.PHONY: test package

test: ## Run Java tests
	@echo "./mvnw test"

package: ## Build JAR
	@echo "./mvnw package"
