Files
dbswitch/build.cmd
2022-08-14 00:07:04 +08:00

10 lines
153 B
Batchfile

@echo off
echo "Clean Project ..."
call mvn clean -f pom.xml
echo "Build Project ..."
call mvn package -f pom.xml -D"maven.test.skip=true"
:exit
pause