CrustyCookiesAPI/makefile

13 lines
126 B
Makefile
Raw Normal View History

2024-04-21 17:43:50 +02:00
build:
./gradlew shadowJar
2024-04-20 22:04:13 +02:00
run:
./gradlew run
clean:
./gradlew clean
test:
./gradlew test
2024-04-21 17:43:50 +02:00
.PHONY: run clean test build