Update version

This commit is contained in:
Jafea7 2025-05-06 11:38:24 +10:00
parent 73e1b4ba0c
commit 6310bd55c2
5 changed files with 6 additions and 4 deletions

View File

@ -8,7 +8,7 @@
<parent>
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<version>25.05.05</version>
<version>25.05.06</version>
<relativePath>../master</relativePath>
</parent>

View File

@ -8,7 +8,7 @@
<parent>
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<version>25.05.05</version>
<version>25.05.06</version>
<relativePath>../master</relativePath>
</parent>

View File

@ -11,7 +11,7 @@
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<packaging>pom</packaging>
<version>25.05.05</version>
<version>25.05.06</version>
<modules>
<module>../common</module>

View File

@ -8,7 +8,7 @@
<parent>
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<version>25.05.05</version>
<version>25.05.06</version>
<relativePath>../master</relativePath>
</parent>

View File

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