mirror of
https://gitee.com/dromara/dbswitch.git
synced 2025-08-29 00:44:19 +00:00
14 lines
315 B
Batchfile
14 lines
315 B
Batchfile
@echo off
|
|
|
|
set APP_VERSION=2.0.1
|
|
|
|
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 |