1 |
<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"> |
2 |
<parent> |
3 |
<artifactId>vectorgraphics</artifactId> |
4 |
<groupId>org.freehep</groupId> |
5 |
<version>2.0-RC3</version> |
6 |
</parent> |
7 |
<modelVersion>4.0.0</modelVersion> |
8 |
<groupId>org.freehep</groupId> |
9 |
<artifactId>freehep-graphicsio-tests</artifactId> |
10 |
<name>FreeHEP GraphicsIO Tests</name> |
11 |
<description>FreeHEP GraphicsIO Test Library</description> |
12 |
<repositories> |
13 |
<repository> |
14 |
<id>freehep-maven</id> |
15 |
<name>Maven FreeHEP</name> |
16 |
<url>http://java.freehep.org/maven2</url> |
17 |
</repository> |
18 |
</repositories> |
19 |
<build> |
20 |
<plugins> |
21 |
<plugin> |
22 |
<artifactId>maven-surefire-plugin</artifactId> |
23 |
<configuration> |
24 |
<skip>false</skip> |
25 |
</configuration> |
26 |
</plugin> |
27 |
<plugin> |
28 |
<groupId>org.codehaus.mojo</groupId> |
29 |
<artifactId>exec-maven-plugin</artifactId> |
30 |
<version>1.0.2</version> |
31 |
<executions> |
32 |
<execution> |
33 |
<goals> |
34 |
<goal>java</goal> |
35 |
</goals> |
36 |
</execution> |
37 |
</executions> |
38 |
<configuration> |
39 |
<mainClass>org.freehep.graphicsio.test.TestApplication</mainClass> |
40 |
<keepAlive>true</keepAlive> |
41 |
</configuration> |
42 |
</plugin> |
43 |
</plugins> |
44 |
</build> |
45 |
<dependencies> |
46 |
<dependency> |
47 |
<groupId>org.freehep</groupId> |
48 |
<artifactId>freehep-export</artifactId> |
49 |
</dependency> |
50 |
<dependency> |
51 |
<groupId>org.freehep</groupId> |
52 |
<artifactId>freehep-graphicsio</artifactId> |
53 |
</dependency> |
54 |
<dependency> |
55 |
<groupId>junit</groupId> |
56 |
<artifactId>junit</artifactId> |
57 |
<scope>compile</scope> |
58 |
</dependency> |
59 |
<dependency> |
60 |
<groupId>org.freehep</groupId> |
61 |
<artifactId>jas-plotter</artifactId> |
62 |
<version>2.0</version> |
63 |
<scope>compile</scope> |
64 |
</dependency> |
65 |
</dependencies> |
66 |
</project> |