xchart
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.knowm.xchart</groupId>
<artifactId>xchart</artifactId>
<version>4.0.3</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.knowm.xchart</groupId>
<artifactId>xchart-parent</artifactId>
<version>4.0.3</version>
</parent>
<artifactId>xchart</artifactId>
<name>XChart</name>
<description>The core XChart library</description>
<dependencies>
<!--
The three encoders below are optional: they are only needed if you export to their
formats (SVG/EPS, PDF, animated GIF). Marking them <optional>true</optional> here (not
just in the parent's <dependencyManagement>, where the flag is NOT inherited) keeps them
off the transitive classpath of projects that only need the built-in PNG/JPG/BMP/GIF/TIFF
raster export. Add the matching dependency to your own build to enable a format.
-->
<dependency>
<groupId>de.erichseifert.vectorgraphics2d</groupId>
<artifactId>VectorGraphics2D</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>de.rototor.pdfbox</groupId>
<artifactId>graphics2d</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.madgag</groupId>
<artifactId>animated-gif-lib</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.scilab.forge</groupId>
<artifactId>jlatexmath</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>