Skip to content
Erich Seifert edited this page Aug 8, 2017 · 2 revisions

Add VectorGraphics2D to your project

Without build management system

You can just add VectorGraphics2D-0.13.jar to the classpath of your project.

Using VectorGraphics2D with Maven

<dependency>
    <groupId>de.erichseifert.vectorgraphics2d</groupId>
    <artifactId>VectorGraphics2D</artifactId>
    <version>0.13</version>
</dependency>

Using VectorGraphics2D with Gradle

dependencies {
    compile group: 'de.erichseifert.vectorgraphics2d', name: 'VectorGraphics2D', version: '0.13'
}

Using VectorGraphics2D with sbt

libraryDependencies += "de.erichseifert.vectorgraphics2d" % "VectorGraphics2D" % "0.13"