Skip to content

Dependencies

Robert Fisher edited this page May 20, 2015 · 31 revisions

This tutorial covers how to add the graph editor jars to your project.

Maven

Add the following dependency to your pom.xml file:

<dependency>
    <groupId>de.tesis.dynaware</groupId>
    <artifactId>de.tesis.dynaware.grapheditor.core</artifactId>
    <version>1.3.1</version>
</dependency>

Gradle

Add the following lines to your build.gradle file:

repositories {
    mavenCentral()
}

dependencies {
    compile 'de.tesis.dynaware:de.tesis.dynaware.grapheditor.core:1.3.1'
}

Old-fashioned way

If you do not use Maven or Gradle, you can download the demo and manually add the entire contents of the libs directory to your classpath.

Clone this wiki locally