jfreechart-swt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>jfree</groupId> <artifactId>jfreechart-swt</artifactId> <version>1.0.17</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>jfree</groupId> <artifactId>jfreechart-swt</artifactId> <name>jfreechart-swt</name> <version>1.0.17</version> <packaging>jar</packaging> <!-- this is required to host it on Sonatype's OSSRH --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <organization> <name>JFree.org</name> <url>http://www.jfree.org/</url> </organization> <inceptionYear>2001</inceptionYear> <description> JFreeChart is a class library, written in Java, for generating charts. Utilising the Java2D APIs, it currently supports bar charts, pie charts, line charts, XY-plots and time series plots. </description> <url>http://www.jfree.org/jfreechart/</url> <issueManagement> <url>http://sourceforge.net/tracker/?group_id=15494</url> </issueManagement> <scm> <connection>scm:svn:https://jfreechart.svn.sourceforge.net/svnroot/jfreechart jfreechart</connection> <url>http://jfreechart.svn.sourceforge.net/viewvc/jfreechart/</url> </scm> <mailingLists> <mailingList> <name>JFreeChart Developer List</name> <subscribe> jfreechart-dev-request@lists.sourceforge.net?subject=subscribe </subscribe> <unsubscribe> jfreechart-dev-request@lists.sourceforge.net?subject=unsubscribe </unsubscribe> <archive> http://sourceforge.net/mailarchive/forum.php?forum=jfreechart-dev </archive> </mailingList> </mailingLists> <developers> <!-- For an up to date list of developers and contributors have a look at the project info implementations. --> </developers> <licenses> <license> <name>GNU Lesser General Public Licence</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> <distribution>repo</distribution> </license> </licenses> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jfree</groupId> <artifactId>jfreechart</artifactId> <version>1.0.17-SNAPSHOT</version> </dependency> <dependency> <groupId>org.eclipse.swt</groupId> <artifactId>org.eclipse.swt.win32.win32.x86</artifactId> <version>3.2.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> </dependencies> </project>