The version is normally bumped by the maven-release-plugin. The typical release process would look like:
mvn release:prepare mvn release:perform In general, the whole process does several things: change the version from SNAPSHOT to a release form, build your code to make sure it will build and tests pass, create a new scm tag with the release version, bump the version number and relabel it as a SNAPSHOT. You are, of course, free to manage all of this on your own, but I would recommend you look at the plugin. It sure is a time saver. Dave Nicholas Tung wrote: > Hi all, > > Is there a way to set the version for the "mvn deploy" command? I tried > -Dversion=<version>, and -Dproject.version=<version>, and that didn't do > anything. Alternately (maybe even better), is there a command line to bump > [set] the version number in a project and all modules? I see there is the > versions plugin to update dependencies, but that's not quite what I want. > Also, there appear to be bugs when using variables inside the parent pom.xml > for the <version> tag. > > Thanks in advance, > Nicholas > https://ntung.com > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
