Hi, My pom files have a number of dependency versions defined as properties. For good reason. The version properties are used in both the <dependencies> and rpm build section of the pom.xml
As part of a release I only want to update the properties to the next minor version. For example, use-latest-versions allows this with: mvn versions:use-latest-versions -DallowSnapshots -DallowMajorUpdates=false However, update-properties doesn't seem to support this: http://mojo.codehaus.org/versions-maven-plugin/update-properties-mojo.html Any other option?