Add maven

This commit is contained in:
Ceikry
2022-05-31 02:51:22 +00:00
parent 0b0fc5271d
commit 185496e561
37 changed files with 1450 additions and 522 deletions
+14
View File
@@ -0,0 +1,14 @@
@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
)