Download the latest release or clone the repository from GitHub.
Clone from GitHub and change directory:
git clone https://github.com/k0psutin/TiraLabra
cd tiralabra
Jar:
java -jar pathfinding-1.0.jar
Run gradlew build
in command line or terminal.
Note: Running this command will generate all reports (not Javadoc). However, if you want to generate any given report individually, see sections Checkstyle or Jacoco test coverage.
All reports can be found from the following folder: \app\build\reports\
You can start the program with the following command:
gradlew run
Run gradlew javadoc
in terminal.
Javadoc will be generated to \app\build\docs\javadoc
gradlew packJar
.jar
will be located at: \app\build\libs\
You can generate the checkstyle report with
gradlew clean checkstyleMain
Once finished, a report will be generated to the folder \app\build\reports\checkstyle
.
You can generate the Jacoco test coverage report with:
gradlew jacocoTestReport
Once finished, a report will be generated to the folder \app\build\reports\jacoco
.