upgrade versions-maven-plugin version to 2.5 to avoid manual update of the bom file

Signed-off-by: olivier lamy <olamy@webtide.com>
This commit is contained in:
olivier lamy 2017-09-26 10:25:50 +10:00
parent b889d2d300
commit 44e1b7b02b
1 changed files with 3 additions and 2 deletions

View File

@ -141,9 +141,10 @@ if proceedyn "Are you sure you want to release using above? (y/N)" n; then
# This is equivalent to 'mvn release:prepare'
if proceedyn "Update project.versions for $VER_RELEASE? (Y/n)" y; then
mvn org.codehaus.mojo:versions-maven-plugin:2.1:set \
mvn org.codehaus.mojo:versions-maven-plugin:2.5:set \
-DoldVersion="$VER_CURRENT" \
-DnewVersion="$VER_RELEASE"
-DnewVersion="$VER_RELEASE" \
-DprocessAllModules=true
fi
if proceedyn "Commit $VER_RELEASE updates? (Y/n)" y; then
git commit -a -m "Updating to version $VER_RELEASE"