WorldsOrganizer/Makefile

15 lines
233 B
Makefile
Raw Permalink Normal View History

2021-10-21 22:53:26 -04:00
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