代码提交

This commit is contained in:
inrgihc
2020-08-31 00:11:24 +08:00
commit 1f2565d40e
215 changed files with 20016 additions and 0 deletions

14
version.cmd Normal file
View File

@@ -0,0 +1,14 @@
@echo off
set APP_VERSION=1.4.0
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