/[schmitzm]/trunk/pom.xml
ViewVC logotype

Contents of /trunk/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1087 - (show annotations)
Sat Oct 9 22:12:04 2010 UTC (14 years, 4 months ago) by alfonx
File MIME type: text/xml
File size: 11037 byte(s)
added ...-tests.jar creation to the maven-jar-plugin
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>de.schmitzm</groupId>
5 <artifactId>schmitzm-library</artifactId>
6 <name>schmitzm-library</name>
7 <version>2.3-SNAPSHOT</version>
8 <description>A jar full of utility methods for Java6, Swing, Geotools and JFreeChart</description>
9
10 <issueManagement>
11 <system>gforge</system>
12 <url>http://wald.intevation.org/tracker/?group_id=47</url>
13 </issueManagement>
14
15 <licenses>
16 <license>
17 <name>Lesser General Public License (LGPL)</name>
18 <url>http://www.gnu.org/copyleft/lgpl.txt</url>
19 </license>
20 </licenses>
21
22 <properties>
23 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24 <geotools.version>2.6.5</geotools.version>
25 </properties>
26
27 <developers>
28 <developer>
29 <id>mschmitz</id>
30 <name>Martin Schmitz</name>
31 <timezone>GMT+1</timezone>
32 <roles>
33 <role>Developer</role>
34 </roles>
35 </developer>
36 <developer>
37 <id>alfonx</id>
38 <name>Stefan A. Tzeggai</name>
39 <email>[email protected]</email>
40 <url>http://www.wikisquare.de</url>
41 <organization>Wikisquare.de</organization>
42 <organizationUrl>http://www.wikisquare.de</organizationUrl>
43 <timezone>GMT+1</timezone>
44 <roles>
45 <role>Developer</role>
46 <role>Maven package maintainer</role>
47 </roles>
48 </developer>
49 </developers>
50
51 <scm>
52 <connection>scm:https://svn.wald.intevation.org/svn/schmitzm</connection>
53 <url>https://svn.wald.intevation.org/svn/schmitzm/trunk</url>
54 <developerConnection>svn+ssh://developername@svn.wald.intevation.org/schmitzm/trunk</developerConnection>
55 </scm>
56
57 <organization>
58 <url>http://www.wikisquare.de</url>
59 </organization>
60
61
62 <dependencies>
63
64 <dependency>
65 <groupId>org.geotools</groupId>
66 <artifactId>gt-render</artifactId>
67 <version>${geotools.version}</version>
68 <type>jar</type>
69 <scope>compile</scope>
70 </dependency>
71
72 <dependency>
73 <groupId>org.geotools</groupId>
74 <artifactId>gt-shapefile-renderer</artifactId>
75 <version>${geotools.version}</version>
76 <type>jar</type>
77 <scope>compile</scope>
78 </dependency>
79
80 <dependency>
81 <groupId>org.geotools</groupId>
82 <artifactId>gt-legacy</artifactId>
83 <version>${geotools.version}</version>
84 <type>jar</type>
85 <scope>compile</scope>
86 </dependency>
87
88 <dependency>
89 <groupId>org.geotools</groupId>
90 <artifactId>gt-brewer</artifactId>
91 <version>${geotools.version}</version>
92 <type>jar</type>
93 <scope>compile</scope>
94 </dependency>
95
96 <dependency>
97 <groupId>org.geotools</groupId>
98 <artifactId>gt-image</artifactId>
99 <version>${geotools.version}</version>
100 <type>jar</type>
101 <scope>compile</scope>
102 </dependency>
103
104 <dependency>
105 <groupId>org.geotools</groupId>
106 <artifactId>gt-coverage</artifactId>
107 <version>${geotools.version}</version>
108 <type>jar</type>
109 <scope>compile</scope>
110 </dependency>
111
112 <dependency>
113 <groupId>org.geotools</groupId>
114 <artifactId>gt-geotiff</artifactId>
115 <version>${geotools.version}</version>
116 <type>jar</type>
117 <scope>compile</scope>
118 </dependency>
119
120 <dependency>
121 <groupId>org.geotools</groupId>
122 <artifactId>gt-swing</artifactId>
123 <version>${geotools.version}</version>
124 <type>jar</type>
125 <scope>compile</scope>
126 </dependency>
127
128 <dependency>
129 <groupId>jfree</groupId>
130 <artifactId>jfreechart</artifactId>
131 <version>1.0.13</version>
132 <scope>compile</scope>
133 </dependency>
134
135 <dependency>
136 <groupId>org.geotools</groupId>
137 <artifactId>gt-main</artifactId>
138 <version>${geotools.version}</version>
139 <type>jar</type>
140 <scope>compile</scope>
141 </dependency>
142
143 <dependency>
144 <groupId>org.geotools</groupId>
145 <artifactId>gt-arcgrid</artifactId>
146 <version>${geotools.version}</version>
147 <type>jar</type>
148 <scope>compile</scope>
149 </dependency>
150
151 <dependency>
152 <groupId>org.slf4j</groupId>
153 <artifactId>slf4j-log4j12</artifactId>
154 <version>1.5.11</version>
155 <type>jar</type>
156 <scope>compile</scope>
157 </dependency>
158
159 <dependency>
160 <!-- Logging with log4j. Die MVN dependency fuer 1.2.15 ist defekt. downgraded
161 to 1.2.14 http://jira.codehaus.org/browse/MEV-649 -->
162 <groupId>log4j</groupId>
163 <artifactId>log4j</artifactId>
164 <version>1.2.14</version>
165 </dependency>
166
167 <dependency>
168 <groupId>junit</groupId>
169 <artifactId>junit</artifactId>
170 <version>4.8.1</version>
171 <type>jar</type>
172 <scope>compile</scope>
173 </dependency>
174
175 <dependency>
176 <groupId>colt</groupId>
177 <artifactId>colt</artifactId>
178 <version>1.2.0</version>
179 <type>jar</type>
180 <scope>compile</scope>
181 </dependency>
182
183 <dependency>
184 <groupId>javax.media</groupId>
185 <artifactId>jai_core</artifactId>
186 <version>1.1.3</version>
187 <type>jar</type>
188 <scope>compile</scope>
189 </dependency>
190
191 <dependency>
192 <groupId>commons-io</groupId>
193 <artifactId>commons-io</artifactId>
194 <version>1.4</version>
195 <type>jar</type>
196 <scope>compile</scope>
197 </dependency>
198
199 <dependency>
200 <groupId>net.jini</groupId>
201 <artifactId>jini-ext</artifactId>
202 <version>2.1</version>
203 <type>jar</type>
204 <scope>compile</scope>
205 </dependency>
206
207 <dependency>
208 <groupId>com.miglayout</groupId>
209 <artifactId>miglayout</artifactId>
210 <version>3.7.2</version>
211 </dependency>
212
213 <dependency>
214 <groupId>org.jdom</groupId>
215 <artifactId>jdom</artifactId>
216 <version>1.1</version>
217 </dependency>
218
219 <dependency>
220 <groupId>jfree</groupId>
221 <artifactId>jcommon</artifactId>
222 <version>1.0.15</version>
223 <type>jar</type>
224 <scope>compile</scope>
225 </dependency>
226
227
228 <dependency>
229 <!-- Fuer Sonderzeichenbehandlung -->
230 <groupId>ant-contrib</groupId>
231 <artifactId>ant-contrib</artifactId>
232 <version>1.0b3</version>
233 <type>jar</type>
234 <scope>provided</scope>
235 </dependency>
236
237
238 <dependency>
239 <!-- Fuer Sonderzeichenbehandlung -->
240 <groupId>ant</groupId>
241 <artifactId>ant-nodeps</artifactId>
242 <version>1.6.5</version>
243 <scope>provided</scope>
244 </dependency>
245
246 <dependency>
247 <!-- Fuer Sonderzeichenbehandlung -->
248 <groupId>com.sun</groupId>
249 <artifactId>tools</artifactId>
250 <version>1.6.0</version>
251 <scope>system</scope>
252 <systemPath>${java.home}/../lib/tools.jar</systemPath>
253 </dependency>
254
255 </dependencies>
256
257
258 <build>
259
260 <sourceDirectory>src</sourceDirectory>
261 <testSourceDirectory>src_junit</testSourceDirectory>
262 <testResources>
263 <testResource>
264 <directory>src_junit</directory>
265 <filtering>false</filtering>
266 <excludes>
267 <exclude>**/*.java</exclude>
268 <exclude>**/*.svn*</exclude>
269 <exclude>**/*.cvs</exclude>
270 <exclude>**/*~</exclude>
271 <exclude>**/Thumbs.db</exclude>
272 </excludes>
273 </testResource>
274 </testResources>
275
276 <!-- <outputDirectory>classes</outputDirectory> -->
277 <!-- <testOutputDirectory>test-classes</testOutputDirectory> -->
278 <!-- <directory>dist</directory> -->
279
280 <resources>
281 <resource>
282 <directory>src</directory>
283 <filtering>false</filtering>
284 <excludes>
285 <exclude>**/*.html</exclude>
286 <exclude>**/*.java</exclude>
287 <exclude>**/*.svn*</exclude>
288 <exclude>**/*.cvs</exclude>
289 <exclude>**/*~</exclude>
290 <exclude>**/Thumbs.db</exclude>
291 </excludes>
292 </resource>
293 </resources>
294
295 <plugins>
296
297 <plugin>
298 <groupId>org.apache.maven.plugins</groupId>
299 <artifactId>maven-jar-plugin</artifactId>
300 <version>2.3.1</version>
301 <executions>
302 <execution>
303 <goals>
304 <goal>test-jar</goal>
305 <goal>jar</goal>
306 </goals>
307 </execution>
308 </executions>
309 </plugin>
310
311 <plugin>
312 <groupId>org.apache.maven.plugins</groupId>
313 <artifactId>maven-resources-plugin</artifactId>
314 <version>2.4.2</version>
315 </plugin>
316
317 <plugin>
318 <groupId>org.apache.maven.plugins</groupId>
319 <artifactId>maven-source-plugin</artifactId>
320 <version>2.1.1</version>
321 <executions>
322 <execution>
323 <id>attach-sources</id>
324 <goals>
325 <goal>jar</goal>
326 </goals>
327 </execution>
328 </executions>
329 </plugin>
330
331 <plugin>
332 <groupId>org.apache.maven.plugins</groupId>
333 <artifactId>maven-compiler-plugin</artifactId>
334 <version>2.2</version>
335 <configuration>
336 <source>1.6</source>
337 <target>1.6</target>
338 <excludes>
339 <exclude>**/.svn</exclude> <!-- ??? -->
340 </excludes>
341 </configuration>
342 </plugin>
343
344 <plugin>
345 <groupId>org.apache.maven.plugins</groupId>
346 <artifactId>maven-eclipse-plugin</artifactId>
347 <version>2.8</version>
348 <configuration>
349 <downloadSources>true</downloadSources>
350 <downloadJavadocs>false</downloadJavadocs>
351 </configuration>
352 </plugin>
353
354
355
356 <plugin>
357 <artifactId>maven-antrun-plugin</artifactId>
358 <version>1.3</version>
359
360 <executions>
361 <execution>
362 <phase>compile</phase>
363 <goals>
364 <goal>run</goal>
365 </goals>
366 <configuration>
367
368 <tasks>
369 <taskdef resource="net/sf/antcontrib/antlib.xml">
370 <classpath refid="maven.dependency.classpath" />
371 </taskdef>
372 <typedef name="native2ascii"
373 classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii">
374 <classpath refid="maven.dependency.classpath" />
375 </typedef>
376
377 <for param="file"
378 description="Alle .properties nach .propertieNative umbenennen">
379 <path>
380 <fileset dir="src" includes="**/*.properties" />
381 </path>
382 <sequential>
383 <move file="@{file}" overwrite="true" tofile="@{file}Native"
384 verbose="false" preservelastmodified="true" />
385 </sequential>
386 </for>
387
388 <native2ascii encoding="UTF8" src="src"
389 includes="**/*.propertiesNative" dest="src" ext=".properties" />
390
391 <for param="file">
392 <path>
393 <fileset dir="src" includes="**/*.propertiesNative" />
394 </path>
395 <sequential>
396 <delete file="@{file}" quiet="true" />
397 </sequential>
398 </for>
399
400 </tasks>
401 </configuration>
402 </execution>
403 </executions>
404 </plugin>
405
406 </plugins>
407
408 </build>
409
410
411 <repositories>
412
413 <repository>
414 <snapshots>
415 <enabled>false</enabled>
416 </snapshots>
417 <id>central</id>
418 <name>libs-releases</name>
419 <url>http://artifactory.wikisquare.de/artifactory/libs-releases</url>
420 </repository>
421
422 <repository>
423 <snapshots />
424 <id>snapshots</id>
425 <name>libs-snapshots</name>
426 <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots</url>
427 </repository>
428
429 </repositories>
430
431 <distributionManagement>
432
433 <repository>
434 <id>artifactory.wikisquare.de</id>
435 <name>artifactory.wikisquare.de-releases</name>
436 <url>http://artifactory.wikisquare.de/artifactory/libs-releases-local</url>
437 </repository>
438
439 <snapshotRepository>
440 <id>artifactory.wikisquare.de</id>
441 <name>artifactory.wikisquare.de-snapshots</name>
442 <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots-local</url>
443 </snapshotRepository>
444
445 </distributionManagement>
446
447 </project>

Properties

Name Value
svn:eol-style native
svn:keywords Id URL
svn:mime-type text/xml

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26