WorldsOrganizer/Makefile
2021-10-21 21:53:26 -05:00

16 lines
294 B
Makefile

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