Files
dbswitch/version.cmd
inrgihc 39a16020ce !64 v1.6.2: fix bug of version 1.6.1
version for 1.6.2
2022-08-14 00:11:05 +08:00

14 lines
315 B
Batchfile

@echo off
set APP_VERSION=1.6.2
echo "Clean Project ..."
call mvn clean -f pom.xml
echo "Update version ..."
call mvn versions:set -DnewVersion=%APP_VERSION% -DprocessAllModules=true -DallowSnapshots=true -DgenerateBackupPoms=false
call mvn -N versions:update-child-modules
call mvn versions:commit
:exit
pause