1 |
alfonx |
1386 |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 |
alfonx |
1391 |
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 |
1391 |
<groupId>de.schmitzm</groupId> |
6 |
|
|
<artifactId>schmitzm-parent</artifactId> |
7 |
keeb |
2050 |
<version>2.8-SNAPSHOT</version> |
8 |
alfonx |
1391 |
<packaging>pom</packaging> |
9 |
|
|
<description>Describes maven pom settings for all schmitz modules</description> |
10 |
alfonx |
1386 |
|
11 |
alfonx |
1391 |
<name>schmitzm-parent</name> |
12 |
|
|
<url>http://maven.apache.org</url> |
13 |
alfonx |
1386 |
|
14 |
alfonx |
1391 |
<properties> |
15 |
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 |
alfonx |
1480 |
<schmitzm.version>${project.version}</schmitzm.version> |
17 |
alfonx |
1787 |
<!-- <geotools.version>8-SNAPSHOT</geotools.version> --> |
18 |
keeb |
2051 |
<geotools.version>2.7.5</geotools.version> |
19 |
alfonx |
1391 |
</properties> |
20 |
alfonx |
1386 |
|
21 |
alfonx |
1391 |
<issueManagement> |
22 |
|
|
<system>gforge</system> |
23 |
|
|
<url>http://wald.intevation.org/tracker/?group_id=47</url> |
24 |
|
|
</issueManagement> |
25 |
|
|
|
26 |
|
|
<licenses> |
27 |
|
|
<license> |
28 |
|
|
<name>Lesser General Public License (LGPL)</name> |
29 |
|
|
<url>http://www.gnu.org/copyleft/lgpl.txt</url> |
30 |
|
|
</license> |
31 |
|
|
</licenses> |
32 |
|
|
|
33 |
|
|
<developers> |
34 |
|
|
<developer> |
35 |
|
|
<id>mschmitz</id> |
36 |
|
|
<name>Martin Schmitz</name> |
37 |
|
|
<timezone>GMT+1</timezone> |
38 |
|
|
<roles> |
39 |
|
|
<role>Developer</role> |
40 |
|
|
</roles> |
41 |
|
|
</developer> |
42 |
|
|
<developer> |
43 |
|
|
<id>alfonx</id> |
44 |
|
|
<name>Stefan A. Tzeggai</name> |
45 |
|
|
<email>[email protected]</email> |
46 |
|
|
<url>http://www.wikisquare.de</url> |
47 |
|
|
<organization>Wikisquare.de</organization> |
48 |
|
|
<organizationUrl>http://www.wikisquare.de</organizationUrl> |
49 |
|
|
<timezone>GMT+1</timezone> |
50 |
|
|
<roles> |
51 |
|
|
<role>Developer</role> |
52 |
|
|
<role>Maven package maintainer</role> |
53 |
|
|
</roles> |
54 |
|
|
</developer> |
55 |
|
|
</developers> |
56 |
|
|
|
57 |
|
|
<scm> |
58 |
|
|
<connection>scm:https://svn.wald.intevation.org/svn/schmitzm</connection> |
59 |
|
|
<url>https://svn.wald.intevation.org/svn/schmitzm/trunk</url> |
60 |
|
|
<developerConnection>svn+ssh://developername@svn.wald.intevation.org/schmitzm/trunk</developerConnection> |
61 |
|
|
</scm> |
62 |
|
|
|
63 |
|
|
<organization> |
64 |
|
|
<url>http://www.wikisquare.de</url> |
65 |
|
|
</organization> |
66 |
|
|
|
67 |
alfonx |
1406 |
|
68 |
alfonx |
1391 |
<dependencies> |
69 |
|
|
|
70 |
|
|
<dependency> |
71 |
|
|
<!-- Fuer Sonderzeichenbehandlung --> |
72 |
|
|
<groupId>ant-contrib</groupId> |
73 |
|
|
<artifactId>ant-contrib</artifactId> |
74 |
|
|
<version>1.0b3</version> |
75 |
|
|
<type>jar</type> |
76 |
|
|
<scope>provided</scope> |
77 |
|
|
</dependency> |
78 |
|
|
|
79 |
|
|
<dependency> |
80 |
|
|
<!-- Fuer Sonderzeichenbehandlung --> |
81 |
|
|
<groupId>ant</groupId> |
82 |
|
|
<artifactId>ant-nodeps</artifactId> |
83 |
|
|
<version>1.6.5</version> |
84 |
|
|
<scope>provided</scope> |
85 |
|
|
</dependency> |
86 |
|
|
|
87 |
|
|
<dependency> |
88 |
|
|
<!-- Fuer Sonderzeichenbehandlung --> |
89 |
|
|
<groupId>com.sun</groupId> |
90 |
|
|
<artifactId>tools</artifactId> |
91 |
|
|
<version>1.6.0</version> |
92 |
|
|
<scope>system</scope> |
93 |
|
|
<systemPath>${java.home}/../lib/tools.jar</systemPath> |
94 |
|
|
</dependency> |
95 |
alfonx |
1419 |
|
96 |
|
|
<dependency> |
97 |
|
|
<groupId>junit</groupId> |
98 |
|
|
<artifactId>junit</artifactId> |
99 |
|
|
<version>4.8.2</version> |
100 |
|
|
<type>jar</type> |
101 |
|
|
<scope>test</scope> |
102 |
|
|
</dependency> |
103 |
|
|
|
104 |
|
|
<dependency> |
105 |
|
|
<!-- Logging with log4j. Die MVN dependency fuer 1.2.15 ist defekt. downgraded --> |
106 |
|
|
<!-- to 1.2.14 http://jira.codehaus.org/browse/MEV-649 --> |
107 |
|
|
<groupId>log4j</groupId> |
108 |
|
|
<artifactId>log4j</artifactId> |
109 |
|
|
<version>1.2.14</version> |
110 |
|
|
</dependency> |
111 |
alfonx |
1391 |
</dependencies> |
112 |
alfonx |
1393 |
|
113 |
|
|
<build> |
114 |
|
|
<plugins> |
115 |
|
|
|
116 |
|
|
<plugin> |
117 |
|
|
<groupId>org.apache.maven.plugins</groupId> |
118 |
|
|
<artifactId>maven-jar-plugin</artifactId> |
119 |
|
|
<version>2.3.1</version> |
120 |
|
|
<executions> |
121 |
|
|
<execution> |
122 |
|
|
<goals> |
123 |
|
|
<goal>test-jar</goal> |
124 |
|
|
<goal>jar</goal> |
125 |
|
|
</goals> |
126 |
|
|
</execution> |
127 |
|
|
</executions> |
128 |
|
|
</plugin> |
129 |
|
|
|
130 |
|
|
<plugin> |
131 |
|
|
<groupId>org.apache.maven.plugins</groupId> |
132 |
|
|
<artifactId>maven-resources-plugin</artifactId> |
133 |
|
|
<version>2.4.2</version> |
134 |
|
|
</plugin> |
135 |
|
|
|
136 |
|
|
<plugin> |
137 |
|
|
<groupId>org.apache.maven.plugins</groupId> |
138 |
|
|
<artifactId>maven-compiler-plugin</artifactId> |
139 |
alfonx |
1872 |
<version>2.3.2</version> |
140 |
alfonx |
1393 |
<configuration> |
141 |
|
|
<source>1.6</source> |
142 |
|
|
<target>1.6</target> |
143 |
|
|
<excludes> |
144 |
|
|
<exclude>**/.svn</exclude> <!-- ??? --> |
145 |
|
|
</excludes> |
146 |
|
|
</configuration> |
147 |
|
|
</plugin> |
148 |
|
|
|
149 |
alfonx |
1787 |
<!-- <plugin> --> |
150 |
|
|
<!-- <artifactId>maven-antrun-plugin</artifactId> --> |
151 |
|
|
<!-- <version>1.3</version> --> |
152 |
alfonx |
1393 |
|
153 |
alfonx |
1787 |
<!-- <executions> --> |
154 |
|
|
<!-- <execution> --> |
155 |
|
|
<!-- <phase>compile</phase> --> |
156 |
|
|
<!-- <goals> --> |
157 |
|
|
<!-- <goal>run</goal> --> |
158 |
|
|
<!-- </goals> --> |
159 |
|
|
<!-- <configuration> --> |
160 |
alfonx |
1393 |
|
161 |
alfonx |
1787 |
<!-- <tasks> --> |
162 |
|
|
<!-- <taskdef resource="net/sf/antcontrib/antlib.xml"> --> |
163 |
|
|
<!-- <classpath refid="maven.dependency.classpath" /> --> |
164 |
|
|
<!-- </taskdef> --> |
165 |
alfonx |
1393 |
|
166 |
alfonx |
1787 |
<!-- <typedef name="native2ascii" --> |
167 |
|
|
<!-- classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii"> --> |
168 |
|
|
<!-- <classpath refid="maven.dependency.classpath" /> --> |
169 |
|
|
<!-- </typedef> --> |
170 |
alfonx |
1393 |
|
171 |
alfonx |
1787 |
<!-- <for param="file" --> |
172 |
|
|
<!-- description="Alle .properties nach .propertieNative umbenennen"> --> |
173 |
|
|
<!-- <path> --> |
174 |
|
|
<!-- <fileset dir="src" includes="**/*.properties" /> --> |
175 |
|
|
<!-- </path> --> |
176 |
|
|
<!-- <sequential> --> |
177 |
|
|
<!-- <move file="@{file}" overwrite="true" tofile="@{file}Native" --> |
178 |
|
|
<!-- verbose="false" preservelastmodified="true" /> --> |
179 |
|
|
<!-- </sequential> --> |
180 |
|
|
<!-- </for> --> |
181 |
alfonx |
1393 |
|
182 |
alfonx |
1787 |
<!-- <native2ascii encoding="UTF8" src="src" --> |
183 |
|
|
<!-- includes="**/*.propertiesNative" dest="src" ext=".properties" /> --> |
184 |
alfonx |
1393 |
|
185 |
alfonx |
1787 |
<!-- <for param="file"> --> |
186 |
|
|
<!-- <path> --> |
187 |
|
|
<!-- <fileset dir="src" includes="**/*.propertiesNative" /> --> |
188 |
|
|
<!-- </path> --> |
189 |
|
|
<!-- <sequential> --> |
190 |
|
|
<!-- <delete file="@{file}" quiet="true" /> --> |
191 |
|
|
<!-- </sequential> --> |
192 |
|
|
<!-- </for> --> |
193 |
alfonx |
1393 |
|
194 |
alfonx |
1787 |
<!-- </tasks> --> |
195 |
|
|
<!-- </configuration> --> |
196 |
|
|
<!-- </execution> --> |
197 |
|
|
<!-- </executions> --> |
198 |
|
|
<!-- </plugin> --> |
199 |
alfonx |
1393 |
|
200 |
|
|
</plugins> |
201 |
alfonx |
1787 |
<pluginManagement> |
202 |
|
|
<plugins> |
203 |
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
204 |
|
|
<plugin> |
205 |
|
|
<groupId>org.eclipse.m2e</groupId> |
206 |
|
|
<artifactId>lifecycle-mapping</artifactId> |
207 |
|
|
<version>1.0.0</version> |
208 |
|
|
<configuration> |
209 |
|
|
<lifecycleMappingMetadata> |
210 |
|
|
<pluginExecutions> |
211 |
|
|
<pluginExecution> |
212 |
|
|
<pluginExecutionFilter> |
213 |
|
|
<groupId> |
214 |
|
|
org.apache.maven.plugins |
215 |
|
|
</groupId> |
216 |
|
|
<artifactId> |
217 |
|
|
maven-antrun-plugin |
218 |
|
|
</artifactId> |
219 |
|
|
<versionRange> |
220 |
|
|
[1.3,) |
221 |
|
|
</versionRange> |
222 |
|
|
<goals> |
223 |
|
|
<goal>run</goal> |
224 |
|
|
</goals> |
225 |
|
|
</pluginExecutionFilter> |
226 |
|
|
<action> |
227 |
|
|
<ignore></ignore> |
228 |
|
|
</action> |
229 |
|
|
</pluginExecution> |
230 |
|
|
</pluginExecutions> |
231 |
|
|
</lifecycleMappingMetadata> |
232 |
|
|
</configuration> |
233 |
|
|
</plugin> |
234 |
|
|
</plugins> |
235 |
|
|
</pluginManagement> |
236 |
alfonx |
1393 |
</build> |
237 |
|
|
|
238 |
|
|
|
239 |
|
|
|
240 |
|
|
<repositories> |
241 |
|
|
|
242 |
|
|
<repository> |
243 |
|
|
<snapshots> |
244 |
|
|
<enabled>false</enabled> |
245 |
|
|
</snapshots> |
246 |
|
|
<id>central</id> |
247 |
|
|
<name>libs-releases</name> |
248 |
|
|
<url>http://artifactory.wikisquare.de/artifactory/libs-releases</url> |
249 |
|
|
</repository> |
250 |
|
|
|
251 |
|
|
<repository> |
252 |
|
|
<snapshots /> |
253 |
|
|
<id>snapshots</id> |
254 |
|
|
<name>libs-snapshots</name> |
255 |
|
|
<url>http://artifactory.wikisquare.de/artifactory/libs-snapshots |
256 |
|
|
</url> |
257 |
|
|
</repository> |
258 |
|
|
|
259 |
|
|
</repositories> |
260 |
|
|
|
261 |
|
|
<distributionManagement> |
262 |
|
|
|
263 |
|
|
<repository> |
264 |
|
|
<id>artifactory.wikisquare.de</id> |
265 |
|
|
<name>artifactory.wikisquare.de-releases</name> |
266 |
|
|
<url>http://artifactory.wikisquare.de/artifactory/libs-releases-local |
267 |
|
|
</url> |
268 |
|
|
</repository> |
269 |
|
|
|
270 |
|
|
<snapshotRepository> |
271 |
|
|
<id>artifactory.wikisquare.de</id> |
272 |
|
|
<name>artifactory.wikisquare.de-snapshots</name> |
273 |
|
|
<url>http://artifactory.wikisquare.de/artifactory/libs-snapshots-local |
274 |
|
|
</url> |
275 |
|
|
</snapshotRepository> |
276 |
|
|
|
277 |
|
|
</distributionManagement> |
278 |
alfonx |
1386 |
</project> |