14 lines
334 B
Batchfile
14 lines
334 B
Batchfile
@echo off
|
|
cd Server
|
|
|
|
if NOT exist hasRan.txt (
|
|
.\mvnw.cmd clean
|
|
copy NUL hasRan.txt
|
|
.\mvnw.cmd package -DskipTests
|
|
xcopy /Y target\*-with-dependencies.jar server.jar*
|
|
java -jar server.jar
|
|
) ELSE (
|
|
.\mvnw.cmd package -DskipTests
|
|
xcopy /Y target\*-with-dependencies.jar server.jar*
|
|
java -jar server.jar
|
|
) |