I'm trying to use the maven versions plugin to update my pom to the next snapshot version. eg. 0.0.1
should change to 0.0.2-SNAPSHOT
.
From my reading of http://www.mojohaus.org/versions-maven-plugin/set-mojo.html I would expect mvn versions:set -DnextSnapshot=true
to do this, but in reality it just prompts me for a new version with a default of the current version (0.0.1
). Am I missing something here? I want to do this update as a part of a script so don't want any manual intervention.
I'm using v2.5 of the versions plugins. That link above says that nextSnapshot
is available from 2.10 but 2.5 seems to be the latest I can find.