Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
version.cmd 474 Bytes
Copy Edit Raw Blame History
AE86 authored 2022-03-21 12:32 . update bat
@echo off
for /F "eol=; tokens=2,2 delims==" %%i in ('findstr /i "info.app.version=" dbsyncer-web\src\main\resources\application.properties') DO set APP_VERSION=%%i
echo %APP_VERSION%
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化