###########################################################################
#
# FairCom Corporation makefile for java.jpa.nav API Tutorials
#
###########################################################################

ALL: 
	@echo The java.jpa.nav tutorials depend on Java SE Version 8 and newer.
	@echo .
	@echo Make sure your Java SE environment is properly set and then execute:
	@echo make build
	@echo .
	@echo Looks like your current Java is:
	java -version

build: 
	./gradlew build
	@echo The java.jpa.nav tutorial is ready to run.
	@echo Type \'make run\' to run the tutorial.

run:
	./gradlew -q --console plain run
