WorldsOrganizer/Makefile
2023-01-08 04:54:43 -06:00

15 lines
233 B
Makefile

start:
mvn compile exec:java
build:
mvn compile assembly:single
clean:
mvn clean
rm -rf bin
test:
mvn test
install:
mkdir -p bin
cp target/worldsorganizer-*-jar-with-dependencies.jar bin
deploy:
make clean build test install