Home | History | Annotate | Download | only in 1.0.9
      1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      3     <modelVersion>4.0.0</modelVersion>
      4     <groupId>jfree</groupId>
      5     <artifactId>jfreechart</artifactId>
      6     <name>jfreechart</name>
      7     <version>1.0.9</version>
      8     <url>http://www.jfree.org/jfreechart/</url>
      9     <organization>
     10         <name>JFree.org</name>
     11         <url>http://www.jfree.org/</url>
     12     </organization>
     13     <inceptionYear>2001</inceptionYear>
     14     <description>
     15         JFreeChart is a class library, written in Java, for generating charts. Utilising the Java2D APIs, it currently
     16         supports bar charts, pie charts, line charts, XY-plots and time series plots.
     17     </description>
     18     <scm>
     19         <connection>scm:cvs:pserver:anonymous (a] jfreechart.cvs.sourceforge.net:/cvsroot/jfreechart:jfreechart</connection>
     20         <url>http://jfreechart.cvs.sourceforge.net/jfreechart/jfreechart/</url>
     21     </scm>
     22     <licenses>
     23         <license>
     24             <name>GNU Lesser General Public Licence</name>
     25             <url>http://www.gnu.org/licenses/lgpl.txt</url>
     26             <distribution>repo</distribution>
     27         </license>
     28     </licenses>
     29         <build>
     30         <plugins>
     31             <plugin>
     32                 <artifactId>maven-compiler-plugin</artifactId>
     33                 <configuration>
     34                     <source>1.3</source>
     35                     <target>1.3</target>
     36                 </configuration>
     37             </plugin>
     38             <plugin>
     39                 <groupId>org.apache.maven.plugins</groupId>
     40                 <artifactId>maven-surefire-plugin</artifactId>
     41                 <configuration>
     42                     <includes>
     43                         <include>**/JFreeChartTestSuite.java</include>
     44                     </includes>
     45                     <!-- Force locale because of some tests in WeekTests.java -->
     46                     <argLine>-Duser.language=en -Duser.region=GB</argLine>
     47                 </configuration>
     48             </plugin>
     49         </plugins>
     50     </build>
     51     <dependencies>
     52         <dependency>
     53             <groupId>jfree</groupId>
     54             <artifactId>jcommon</artifactId>
     55             <version>1.0.12</version>
     56         </dependency>
     57         <dependency>
     58             <groupId>javax.servlet</groupId>
     59             <artifactId>servlet-api</artifactId>
     60             <version>2.3</version>
     61             <optional>true</optional>
     62         </dependency>
     63         <dependency>
     64             <groupId>junit</groupId>
     65             <artifactId>junit</artifactId>
     66             <version>3.8.2</version>
     67             <scope>test</scope>
     68         </dependency>
     69     </dependencies>
     70 </project>
     71