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-graphics2d</artifactId> |
10 |
<name>FreeHEP Graphics2D</name> |
11 |
<description>FreeHEP Graphics 2D 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 |
<dependencies> |
20 |
<dependency> |
21 |
<groupId>org.freehep</groupId> |
22 |
<artifactId>freehep-util</artifactId> |
23 |
</dependency> |
24 |
</dependencies> |
25 |
<build> |
26 |
<plugins> |
27 |
<plugin> |
28 |
<groupId>org.freehep</groupId> |
29 |
<artifactId>freehep-chartableconverter-plugin</artifactId> |
30 |
<executions> |
31 |
<execution> |
32 |
<id>Expert</id> |
33 |
<phase>generate-sources</phase> |
34 |
<goals> |
35 |
<goal>generate</goal> |
36 |
</goals> |
37 |
<configuration> |
38 |
<source>Expert.utf-16</source> |
39 |
</configuration> |
40 |
</execution> |
41 |
<execution> |
42 |
<id>Symbol</id> |
43 |
<phase>generate-sources</phase> |
44 |
<goals> |
45 |
<goal>generate</goal> |
46 |
</goals> |
47 |
<configuration> |
48 |
<source>Symbol.utf-16</source> |
49 |
</configuration> |
50 |
</execution> |
51 |
<execution> |
52 |
<id>Zapfdingbats</id> |
53 |
<phase>generate-sources</phase> |
54 |
<goals> |
55 |
<goal>generate</goal> |
56 |
</goals> |
57 |
<configuration> |
58 |
<source>Zapfdingbats.utf-16</source> |
59 |
</configuration> |
60 |
</execution> |
61 |
<execution> |
62 |
<id>ISOLatin</id> |
63 |
<phase>generate-sources</phase> |
64 |
<goals> |
65 |
<goal>generate</goal> |
66 |
</goals> |
67 |
<configuration> |
68 |
<source>Latin.utf-16</source> |
69 |
<encodingType>ISO</encodingType> |
70 |
</configuration> |
71 |
</execution> |
72 |
<execution> |
73 |
<id>MACLatin</id> |
74 |
<phase>generate-sources</phase> |
75 |
<goals> |
76 |
<goal>generate</goal> |
77 |
</goals> |
78 |
<configuration> |
79 |
<source>Latin.utf-16</source> |
80 |
<encodingType>MAC</encodingType> |
81 |
</configuration> |
82 |
</execution> |
83 |
<execution> |
84 |
<id>WINLatin</id> |
85 |
<phase>generate-sources</phase> |
86 |
<goals> |
87 |
<goal>generate</goal> |
88 |
</goals> |
89 |
<configuration> |
90 |
<source>Latin.utf-16</source> |
91 |
<encodingType>WIN</encodingType> |
92 |
</configuration> |
93 |
</execution> |
94 |
<execution> |
95 |
<id>PDFLatin</id> |
96 |
<phase>generate-sources</phase> |
97 |
<goals> |
98 |
<goal>generate</goal> |
99 |
</goals> |
100 |
<configuration> |
101 |
<source>Latin.utf-16</source> |
102 |
<encodingType>PDF</encodingType> |
103 |
</configuration> |
104 |
</execution> |
105 |
<execution> |
106 |
<id>STDLatin</id> |
107 |
<phase>generate-sources</phase> |
108 |
<goals> |
109 |
<goal>generate</goal> |
110 |
</goals> |
111 |
<configuration> |
112 |
<source>Latin.utf-16</source> |
113 |
<encodingType>STD</encodingType> |
114 |
</configuration> |
115 |
</execution> |
116 |
</executions> |
117 |
<configuration> |
118 |
<packageName>org.freehep.graphics2d.font</packageName> |
119 |
</configuration> |
120 |
</plugin> |
121 |
</plugins> |
122 |
</build> |
123 |
</project> |