Skip to content
Erich Seifert edited this page Mar 12, 2016 · 1 revision

Add GRAL to your project

Without build management system

You can just add gral-core.jar to the classpath of your project.

Using GRAL with Maven

If you want to use GRAL with your Maven project you will have to include it as a dependency in your pom.xml:

<dependency>
    <groupId>de.erichseifert.gral</groupId>
    <artifactId>gral-core</artifactId>
    <version>0.11</version>
</dependency>

Using GRAL with Gradle

dependencies {
    compile group: 'de.erichseifert.gral', name: 'gral-core', version: '0.11'
}

Using GRAL with sbt

libraryDependencies += "de.erichseifert.gral" % "gral-core" % "0.11"