Maven Repository - POM file for Chart jcommon 1.0.12 1.0.12

Summary

jcommon.

JCommon is a free general purpose Java class library that is used in several projects at www.jfree.org, including JFreeChart and JFreeReport..

Declaration

Here is the list of declaration for jcommon. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>jfree</groupId>
   <artifactId>jcommon</artifactId>
   <version>1.0.12</version>
</dependency>

If you think this Maven repository POM file listing for jcommon is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





License

Name:GNU Lesser General Public Licence
URL: http://www.gnu.org/licenses/lgpl.txt.

Depends on

The jcommon-1.0.12 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 3.8.2
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.
555

Depended by

The following table lists the most popular artifacts which are depending on jcommon-1.0.12. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Data Structureuncommons-maths 1.2.2a
Random number generators, probability distributions, combinatorics and statistics for Java.
48
Chartjfreechart 1.0.9
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.
150

Plugin

The following plugins are used in the jcommon-1.0.12.jar

  1. maven-compiler-plugin
  2. maven-surefire-plugin

Packages

The following packages are defined in the jcommon-1.0.12.jar

com.keypoint
org.jfree
org.jfree.base
org.jfree.base.config
org.jfree.base.log
org.jfree.base.modules
org.jfree.date
org.jfree.io
org.jfree.layout
org.jfree.resources
org.jfree.text
org.jfree.threads
org.jfree.ui
org.jfree.ui.about
org.jfree.ui.about.resources
org.jfree.ui.action
org.jfree.ui.tabbedui
org.jfree.util




POM File Source

Here is the content of the POM file.

<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>jcommon</artifactId>
    <name>jcommon</name>
    <version>1.0.12</version>
    <organization>
        <name>JFree.org</name>
        <url>http://www.jfree.org/</url>
    </organization>
    <inceptionYear>2001</inceptionYear>
    <description>
        JCommon is a free general purpose Java class library that is used in several projects at www.jfree.org,
        including JFreeChart and JFreeReport.
    </description>
    <url>http://www.jfree.org/jcommon/</url>
    <scm>
        <connection>scm:cvs:pserver:anonymous@jfreechart.cvs.sourceforge.net:/cvsroot/jfreechart:jcommon</connection>
        <url>http://jfreechart.cvs.sourceforge.net/jfreechart/jcommon/</url>
    </scm>
    <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.3</source>
                    <target>1.3</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>**/PaintTest.java</exclude>
                    </excludes>
                    <!-- Force locale because of some tests in SerialDateTest.java -->
                    <argLine>-Duser.language=en -Duser.region=GB</argLine>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.2</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>