Update update-version.sh

This commit is contained in:
Jafea7 2025-05-14 22:40:20 +10:00
parent 2bf6e9787a
commit f519013118
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@ if [[ -z "$NEW_VERSION" ]]; then
exit 1 exit 1
fi fi
pushd master/
echo "Updating Maven project version to $NEW_VERSION..." echo "Updating Maven project version to $NEW_VERSION..."
# Step 1: Update the parent POM and all modules # Step 1: Update the parent POM and all modules
@ -17,3 +18,4 @@ mvn versions:set -DnewVersion="$NEW_VERSION"
mvn versions:commit mvn versions:commit
echo "Version updated to $NEW_VERSION in all modules." echo "Version updated to $NEW_VERSION in all modules."
popd