In order to start using Kendal framework in your Maven project it is enough to add 2 dependencies in project's pom.xml file:
<dependencies>
<dependency>
<groupId>com.github.projectkendal</groupId>
<artifactId>handlers</artifactId>
<version>LATEST_KENDAL_VERSION</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.projectkendal</groupId>
<artifactId>processor</artifactId>
<version>LATEST_KENDAL_VERSION</version>
</dependency>
</dependencies>
Remember to replace LATEST_KENDAL_VERSION with the latest Kendal version that is available.
You can check it for example here:
https://mvnrepository.com/artifact/com.github.projectkendal/Kendal
Download "processor" and "handlers" jar files from https://mvnrepository.com/artifact/com.github.projectkendal and add them to your project:
We present short descriptions and examples of how features of Kendal framework can be used in separated pages. You can navigate to them from the top bar menu.
Instruction of how to use plugin can be found on the right hand side in the top bar menu (or here).