Dima
Dima

Reputation: 1794

Release of multiple projects with maven

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

Answers (1)

bmargulies
bmargulies

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

Related Questions