diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9f07f7f --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: dist help build clean +dist: help +help: + @echo "make help -> Displays all available tasks" + @echo " build -> Compiles the source code into a usable jar file" + @echo " clean -> Cleans the repository" +build: + ./gradlew shadowJar +clean: + rm -rf .gradle build