Add Makefile
This commit is contained in:
parent
bd49f00522
commit
80236e6130
1 changed files with 10 additions and 0 deletions
10
Makefile
Normal file
10
Makefile
Normal file
|
@ -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
|
Loading…
Reference in a new issue