Integration
Integrating Jtwig Core on your project is quite simple. It will mainly depend on the dependency management mechanism you use. You will need to make sure jcenter is part of your repository list. Such will allow you to get access to the jtwig-core dependency. To check the most recent version, go to bintray.
For some integration examples check jtwig-examples.
Gradle
repositories {
jcenter()
}
dependencies {
compile 'org.jtwig:jtwig-core:5.X'
}
Maven
<repositories>
<repository>
<id>bintray</id>
<url>https://jcenter.bintray.com/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.jtwig</groupId>
<artifactId>jtwig-core</artifactId>
<version>5.X</version>
</dependency>
</dependencies>
SBT
libraryDependencies += "org.jtwig" % "jtwig-core" % "5.X"