A script to bump the version number in a pom.xml
file.
#!/bin/bash
# A script to bump the version number inside a pom.xml file
#
if [ -z "$1" ]
then
echo ""
echo "Bump version script for incrementing the version number in a project's pom.xml file."
echo ""
echo "Usage: bump-version 'version-string'"
echo ""
echo ""
exit
fi
VER=$1
echo $VER
# enure we have a value
CMD="mvn versions:set -DnewVersion=$VER"
echo "Executing:"
echo $CMD
mvn versions:set -DnewVersion=$VER
echo "done"