Revise IDE configurations (KDEV4)

This commit is contained in:
Nicholas George
2021-10-21 21:53:26 -05:00
commit 9e8224e73e
70 changed files with 5639 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
start:
mvn compile exec:java
build:
mvn compile assembly:single
clean:
mvn clean
rm -rf bin
test:
mvn test
install:
chmod +x target/worldsorganizer-*-jar-with-dependencies.jar
mkdir -p bin
cp target/worldsorganizer-*-jar-with-dependencies.jar bin
deploy:
make clean build test install