Reputation: 1794
We got common component C and 2 projects A & B. Each project depends on component C.
The problem is that version of C after release is 1.0 but A & B are still referring to version 1.0-SNAPSHOT of C.
Is there a way to configure Hudson to release C, update POM for projects A and B and then to do a release of these projects automatically?
Upvotes: 2
Views: 611
Reputation: 100196
The maven-versions-plugin can be asked to update the dependency version. It's up to you to write hudson jenkins jobs to run it.
Upvotes: 1