JFreeChart.
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..
Here is the list of declaration for jfreechart. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jfree</groupId> <artifactId>jfreechart</artifactId> <version>1.0.17</version> </dependency>
If you think this Maven repository POM file listing for jfreechart is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GNU Lesser General Public Licence
URL: http://www.gnu.org/licenses/lgpl.txt.
The jfreechart-1.0.17 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
XML Parser | xml-apis 1.3.04 xml-commons provides an Apache-hosted set of DOM, SAX, and JAXP interfaces for use in other xml-based projects. Our hope is that we can standardize on both a common version and packaging scheme for these critical XML standards interfaces to make the lives of both our developers ... | 88 |
JUnit | junit 4.11 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 2031 |
Testing | hamcrest-core 1.3 This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations. | 144 |
The following table lists the most popular artifacts which are depending on jfreechart-1.0.17. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | htmlunit 2.15 A headless browser intended for use in testing web-based applications. | 9 |
The following plugins are used in the jfreechart-1.0.17.jar
The following packages are defined in the jfreechart-1.0.17.jar
org.jfree.chart org.jfree.chart.annotations org.jfree.chart.axis org.jfree.chart.block org.jfree.chart.demo org.jfree.chart.editor org.jfree.chart.encoders org.jfree.chart.entity org.jfree.chart.event org.jfree.chart.imagemap org.jfree.chart.labels org.jfree.chart.needle org.jfree.chart.panel org.jfree.chart.plot org.jfree.chart.plot.dial org.jfree.chart.renderer org.jfree.chart.renderer.category org.jfree.chart.renderer.xy org.jfree.chart.resources org.jfree.chart.servlet org.jfree.chart.title org.jfree.chart.urls org.jfree.chart.util org.jfree.data org.jfree.data.category org.jfree.data.contour org.jfree.data.function org.jfree.data.gantt org.jfree.data.general org.jfree.data.io org.jfree.data.jdbc org.jfree.data.resources org.jfree.data.statistics org.jfree.data.time org.jfree.data.time.ohlc org.jfree.data.xml org.jfree.data.xy
Here is the content of the POM file.
<?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> <name>JFreeChart</name> <artifactId>jfreechart</artifactId> <groupId>org.jfree</groupId> <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> <licenses> <license> <name>GNU Lesser General Public Licence</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>org.jfree</groupId> <artifactId>jcommon</artifactId> <version>1.0.21</version> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.3.04</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>source</sourceDirectory> <testSourceDirectory>tests</testSourceDirectory> <resources> <resource> <directory>source</directory> <includes> <include>**/*.properties</include> <include>**/*.jpg</include> <include>**/*.</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <version>1.7</version> <configuration> <signature> <groupId>org.codehaus.mojo.signature</groupId> <artifactId>java16</artifactId> <version>1.0</version> </signature> </configuration> </plugin> <plugin> <inherited>true</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>${project.source.level}</source> <target>${project.target.level}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.10</version> <configuration> <includes> <include>**/*Test.java</include> </includes> <excludes> <exclude>**/JFreeChartTestSuite.java</exclude> <exclude>**/*PackageTests.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>2.3</version> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.1</version> </plugin> </plugins> </reporting> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.source.level>1.6</project.source.level> <project.target.level>1.6</project.target.level> </properties> </project>