1 |
alfonx |
1386 |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 |
alfonx |
1392 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 |
|
|
<modelVersion>4.0.0</modelVersion> |
4 |
alfonx |
1386 |
|
5 |
alfonx |
1392 |
<groupId>de.schmitzm</groupId> |
6 |
|
|
<artifactId>schmitzm-jfree</artifactId> |
7 |
keeb |
2050 |
<version>2.8-SNAPSHOT</version> |
8 |
alfonx |
1392 |
<packaging>jar</packaging> |
9 |
alfonx |
1386 |
|
10 |
alfonx |
1392 |
<name>schmitzm-jfree</name> |
11 |
|
|
<url>http://maven.apache.org</url> |
12 |
alfonx |
1386 |
|
13 |
|
|
<parent> |
14 |
|
|
<groupId>de.schmitzm</groupId> |
15 |
|
|
<artifactId>schmitzm-parent</artifactId> |
16 |
keeb |
2050 |
<version>2.8-SNAPSHOT</version> |
17 |
alfonx |
1386 |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
18 |
|
|
</parent> |
19 |
|
|
|
20 |
alfonx |
1392 |
<dependencies> |
21 |
|
|
|
22 |
alfonx |
1391 |
<dependency> |
23 |
|
|
<groupId>de.schmitzm</groupId> |
24 |
|
|
<artifactId>schmitzm-core</artifactId> |
25 |
alfonx |
1446 |
<version>${project.version}</version> |
26 |
alfonx |
1396 |
<type>jar</type> |
27 |
|
|
<scope>compile</scope> |
28 |
alfonx |
1391 |
</dependency> |
29 |
|
|
|
30 |
|
|
<dependency> |
31 |
|
|
<groupId>de.schmitzm</groupId> |
32 |
|
|
<artifactId>schmitzm-core</artifactId> |
33 |
alfonx |
1446 |
<version>${project.version}</version> |
34 |
alfonx |
1396 |
<type>test-jar</type> |
35 |
|
|
<scope>test</scope> |
36 |
alfonx |
1391 |
</dependency> |
37 |
alfonx |
1396 |
|
38 |
alfonx |
1391 |
<dependency> |
39 |
alfonx |
1945 |
<groupId>org.jfree</groupId> |
40 |
alfonx |
1391 |
<artifactId>jfreechart</artifactId> |
41 |
alfonx |
1944 |
<version>1.0.14</version> |
42 |
alfonx |
1391 |
<scope>compile</scope> |
43 |
mojays |
1955 |
<exclusions> |
44 |
|
|
<exclusion> |
45 |
|
|
<groupId>com.lowagie</groupId> |
46 |
|
|
<artifactId>itext</artifactId> |
47 |
|
|
</exclusion> |
48 |
|
|
</exclusions> |
49 |
alfonx |
1391 |
</dependency> |
50 |
|
|
|
51 |
|
|
<dependency> |
52 |
|
|
<groupId>jfree</groupId> |
53 |
|
|
<artifactId>jcommon</artifactId> |
54 |
|
|
<version>1.0.15</version> |
55 |
|
|
<type>jar</type> |
56 |
|
|
<scope>compile</scope> |
57 |
|
|
</dependency> |
58 |
alfonx |
1392 |
</dependencies> |
59 |
alfonx |
1447 |
|
60 |
|
|
|
61 |
|
|
<profiles> |
62 |
|
|
<profile> |
63 |
|
|
<id>resourceOperationRemove</id> |
64 |
|
|
<!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove" |
65 |
|
|
the build will remove any lines in the resource bundes that are tagged with |
66 |
|
|
REMOVEME_ --> |
67 |
|
|
<build> |
68 |
|
|
<plugins> |
69 |
|
|
<plugin> |
70 |
|
|
<groupId>org.codehaus.mojo</groupId> |
71 |
|
|
<artifactId>exec-maven-plugin</artifactId> |
72 |
|
|
<version>1.2</version> |
73 |
|
|
<executions> |
74 |
|
|
<execution> |
75 |
|
|
<phase>generate-sources</phase> |
76 |
|
|
<goals> |
77 |
|
|
<goal>java</goal> |
78 |
|
|
</goals> |
79 |
|
|
<configuration> |
80 |
|
|
<mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass> |
81 |
|
|
<arguments> |
82 |
alfonx |
1452 |
<argument>-s</argument> |
83 |
|
|
<argument>${basedir}/src/main/resources</argument> |
84 |
alfonx |
1447 |
<argument>-b</argument> |
85 |
alfonx |
1448 |
<argument>de.schmitzm.jfree.resource.locales.JFreeResourceBundle |
86 |
alfonx |
1447 |
</argument> |
87 |
|
|
</arguments> |
88 |
|
|
</configuration> |
89 |
|
|
</execution> |
90 |
|
|
</executions> |
91 |
|
|
</plugin> |
92 |
|
|
</plugins> |
93 |
|
|
</build> |
94 |
|
|
</profile> |
95 |
|
|
</profiles> |
96 |
|
|
|
97 |
mojays |
1813 |
<build> |
98 |
|
|
<pluginManagement> |
99 |
|
|
<plugins> |
100 |
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
101 |
|
|
<plugin> |
102 |
|
|
<groupId>org.eclipse.m2e</groupId> |
103 |
|
|
<artifactId>lifecycle-mapping</artifactId> |
104 |
|
|
<version>1.0.0</version> |
105 |
|
|
<configuration> |
106 |
|
|
<lifecycleMappingMetadata> |
107 |
|
|
<pluginExecutions> |
108 |
|
|
<pluginExecution> |
109 |
|
|
<pluginExecutionFilter> |
110 |
|
|
<groupId> |
111 |
|
|
org.codehaus.mojo |
112 |
|
|
</groupId> |
113 |
|
|
<artifactId> |
114 |
|
|
exec-maven-plugin |
115 |
|
|
</artifactId> |
116 |
|
|
<versionRange> |
117 |
|
|
[1.2,) |
118 |
|
|
</versionRange> |
119 |
|
|
<goals> |
120 |
|
|
<goal>java</goal> |
121 |
|
|
</goals> |
122 |
|
|
</pluginExecutionFilter> |
123 |
|
|
<action> |
124 |
|
|
<ignore></ignore> |
125 |
|
|
</action> |
126 |
|
|
</pluginExecution> |
127 |
|
|
</pluginExecutions> |
128 |
|
|
</lifecycleMappingMetadata> |
129 |
|
|
</configuration> |
130 |
|
|
</plugin> |
131 |
|
|
</plugins> |
132 |
|
|
</pluginManagement> |
133 |
|
|
</build> |
134 |
alfonx |
2060 |
|
135 |
|
|
|
136 |
|
|
|
137 |
|
|
<repositories> |
138 |
|
|
<repository> |
139 |
|
|
<id>opengeo</id> |
140 |
|
|
<name>OpenGeo Maven Repository</name> |
141 |
|
|
<snapshots> |
142 |
|
|
<enabled>true</enabled> |
143 |
|
|
</snapshots> |
144 |
|
|
<url>http://repo.opengeo.org/</url> |
145 |
|
|
</repository> |
146 |
|
|
</repositories> |
147 |
|
|
|
148 |
alfonx |
1386 |
</project> |