Kendal Manual


How to add framework to my project?


1. Maven project (recommended)

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

2. Not Maven project (not recommended)

Download "processor" and "handlers" jar files from https://mvnrepository.com/artifact/com.github.projectkendal and add them to your project:

  1. Click "File" from the toolbar
  2. Project Structure (CTRL + SHIFT + ALT + S on Windows/Linux)
  3. Select Modules at the left panel
  4. Dependencies tab
  5. '+' -> JARs or directories


How to use framework's features?

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.


How to use Kendal Plugin for IntelliJ IDEA?

Instruction of how to use plugin can be found on the right hand side in the top bar menu (or here).