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</artifactId> |
10 |
<name>FreeHEP GraphicsIO</name> |
11 |
<description>FreeHEP GraphicsIO Base 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 |
<groupId>org.codehaus.mojo</groupId> |
23 |
<artifactId>exec-maven-plugin</artifactId> |
24 |
<version>1.0.2</version> |
25 |
<executions> |
26 |
<execution> |
27 |
<goals> |
28 |
<goal>java</goal> |
29 |
</goals> |
30 |
</execution> |
31 |
</executions> |
32 |
<configuration> |
33 |
<mainClass>org.freehep.graphicsio.exportchooser.ImageIOExportFileType</mainClass> |
34 |
</configuration> |
35 |
</plugin> |
36 |
</plugins> |
37 |
</build> |
38 |
<dependencies> |
39 |
<dependency> |
40 |
<groupId>org.freehep</groupId> |
41 |
<artifactId>freehep-graphics2d</artifactId> |
42 |
</dependency> |
43 |
<dependency> |
44 |
<groupId>org.freehep</groupId> |
45 |
<artifactId>freehep-export</artifactId> |
46 |
</dependency> |
47 |
<dependency> |
48 |
<groupId>org.freehep</groupId> |
49 |
<artifactId>freehep-io</artifactId> |
50 |
</dependency> |
51 |
</dependencies> |
52 |
</project> |