I'm using the maven release plugin on hudson with autoVersionSubmodules set to true to automatically increment the development version in the poms.

I'm wondering if there is a way to make the plugin increment the major version rather than minor version.

Currently when I'm at version 1.1.0-snapshot the next version is set to 1.1.1-snapshot but ideally I would like it to change to 1.2.0-snapshot.

Any idea on how to achieve this?

Thanks.

link|improve this question

40% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The maven release plugin prompts you for the values of the release version to tag and also for the next development version. You can define these to avoid prompting; usually you would set them at the command line with something like mvn -DreleaseVersion=1.1.0 -DdevelopmentVersion=1.2.0-SNAPSHOT.

However, if you are not getting prompted to select the version, then something is choosing for you. If you are using the M2 Release Plugin for Hudson then I think it has options to select the version for you, but you should probably find a way to configure them explicitly. More details about your particular setup would help.

link|improve this answer
Thanks Zac for your answer. I don't want it to prompt for the version but also I don't want to need to go and change the releaseVersion and developmentVersion every time. I just want to see if there is a way to automatically increase the version. Using -DautoVesrionSubmodules increases the minor version but I need to increase the major version. I want to go from 1.1.0 to 1.2.0 – Arya Apr 6 '11 at 12:05
@Arya actually -DautoVersionSubmodules does not automatically pick the version for you. It only makes sure that the version that is specified is applied to all modules (otherwise you are prompted for each). I repeat, "something is choosing for you". If it is maven, I don't think it is the release plugin. I suspect there is something in your Hudson configuration to do it. – Zac Thompson Apr 6 '11 at 21:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.