Skip to content

Latest commit

 

History

History
68 lines (41 loc) · 1.34 KB

user_guide.md

File metadata and controls

68 lines (41 loc) · 1.34 KB

User guide

Installation

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

Setup

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\

Run program

You can start the program with the following command:

gradlew run

Generate Javadoc

Run gradlew javadoc in terminal.

Javadoc will be generated to \app\build\docs\javadoc

Build .jar

gradlew packJar

.jar will be located at: \app\build\libs\

Checkstyle

You can generate the checkstyle report with

gradlew clean checkstyleMain

Once finished, a report will be generated to the folder \app\build\reports\checkstyle.

Jacoco test coverage

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.