blob: 0749d3f54bd68363571cab07436dd3e6e96bfe4e [file] [log] [blame]
Raphael Moll8fb02c12013-03-08 15:22:54 -08001<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>jcommon</artifactId>
6 <name>jcommon</name>
7 <version>1.0.12</version>
8 <organization>
9 <name>JFree.org</name>
10 <url>http://www.jfree.org/</url>
11 </organization>
12 <inceptionYear>2001</inceptionYear>
13 <description>
14 JCommon is a free general purpose Java class library that is used in several projects at www.jfree.org,
15 including JFreeChart and JFreeReport.
16 </description>
17 <url>http://www.jfree.org/jcommon/</url>
18 <scm>
19 <connection>scm:cvs:pserver:anonymous@jfreechart.cvs.sourceforge.net:/cvsroot/jfreechart:jcommon</connection>
20 <url>http://jfreechart.cvs.sourceforge.net/jfreechart/jcommon/</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 <excludes>
43 <exclude>**/PaintTest.java</exclude>
44 </excludes>
45 <!-- Force locale because of some tests in SerialDateTest.java -->
46 <argLine>-Duser.language=en -Duser.region=GB</argLine>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51 <dependencies>
52 <dependency>
53 <groupId>junit</groupId>
54 <artifactId>junit</artifactId>
55 <version>3.8.2</version>
56 <scope>test</scope>
57 </dependency>
58 </dependencies>
59</project>