nhplus/Makefile
Dominik Säume 9681056f0c
NOTICKET: Add Javadoc
Signed-off-by: Dominik Säume <Dominik.Saeume@hmmh.de>
2024-04-23 13:15:59 +02:00

24 lines
No EOL
1.3 KiB
Makefile

##|——[ General ]————————————————————————————————————————————————————————————————————|
help: ## Shops available commands
@bin/make/help.sh
check: ## Checks whether requirements are met
@bin/make/check.sh
##|——[ Running ]————————————————————————————————————————————————————————————————————|
run: ## Starts the local instance
@mvn javafx:run
fresh: ## Starts a fresh local instance
@mvn clean
@mvn compile
@make demo-data
@make run
##|——[ Code Quality ]———————————————————————————————————————————————————————————————|
lint: ## Checks if the Code follows the Styling Conventions
@mvn checkstyle:check
##|——[ Test Data ]——————————————————————————————————————————————————————————————————|
demo-data: ## Writes Demo Data to the local instance
@mvn exec:java -Dexec.mainClass="de.hitec.nhplus.fixtures.Fixtures"