#853 - Polishing.

This commit is contained in:
Greg Turnquist
2019-03-05 10:12:33 -06:00
parent dfd53f4c03
commit e613a230c8

View File

@@ -9,14 +9,14 @@ SNAPSHOT=$3
# Bump up the version in pom.xml to the desired version and commit the change
./mvnw versions:set -DnewVersion=$RELEASE -DgenerateBackupPoms=false
git add .
git commit --message "$ISSUE - Releasing Spring HATEOAS v$RELEASE."
git commit --message "$ISSUE - Releasing Spring HATEOAS $RELEASE."
# Tag the release
git tag -s v$RELEASE -m "v$RELEASE"
git tag -s $RELEASE -m "$RELEASE"
# Bump up the version in pom.xml to the next snapshot
./mvnw versions:set -DnewVersion=$SNAPSHOT -DgenerateBackupPoms=false
git add .
git commit --message "$ISSUE - Continue development on v$SNAPSHOT."
git commit --message "$ISSUE - Continue development on $SNAPSHOT."