Skip to content
Erich Seifert edited this page Mar 16, 2016 · 6 revisions

Add VectorGraphics2D to your project

Without build management system

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

Using VectorGraphics2D with Maven

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

Using VectorGraphics2D with Gradle

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

Using VectorGraphics2D with sbt

libraryDependencies += "de.erichseifert.vectorgraphics2d" % "VectorGraphics2D" % "0.10"
Clone this wiki locally