15 lines
347 B
Bash
Executable file
15 lines
347 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if test $# != 2
|
|
then
|
|
echo "current and next version missing"
|
|
exit
|
|
fi
|
|
|
|
CURRENT=$1
|
|
NEXT=$2
|
|
|
|
echo Updating version from $CURRENT to $NEXT
|
|
|
|
./mvnw versions:set -DnewVersion=$NEXT
|
|
perl -p -i -e "s,$CURRENT</,$NEXT</," builder/pom.xml builder/src/main/resources/README-template.md ruleset/pom.xml tile/pom.xml tile/tile.xml
|