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

Annotation of /trunk/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1344 - (hide annotations)
Mon Dec 13 12:25:26 2010 UTC (14 years, 2 months ago) by alfonx
File MIME type: text/xml
File size: 14493 byte(s)
using poi 3.7 it is possible to calculate the klose xls
1 alfonx 755 <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 alfonx 1207
4 alfonx 755 <modelVersion>4.0.0</modelVersion>
5 alfonx 756 <groupId>de.schmitzm</groupId>
6     <artifactId>schmitzm-library</artifactId>
7 alfonx 903 <name>schmitzm-library</name>
8 alfonx 1241 <version>2.4-SNAPSHOT</version>
9 alfonx 1335 <description>A jar full of utility methods for Java6, Swing, Geotools
10     and JFreeChart</description>
11 alfonx 803
12 alfonx 755 <issueManagement>
13     <system>gforge</system>
14     <url>http://wald.intevation.org/tracker/?group_id=47</url>
15     </issueManagement>
16 alfonx 757
17 alfonx 784 <licenses>
18     <license>
19     <name>Lesser General Public License (LGPL)</name>
20     <url>http://www.gnu.org/copyleft/lgpl.txt</url>
21     </license>
22     </licenses>
23 alfonx 757
24 alfonx 756 <properties>
25 alfonx 803 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
26 alfonx 961 <geotools.version>2.6.5</geotools.version>
27 alfonx 756 </properties>
28 alfonx 784
29 alfonx 755 <developers>
30     <developer>
31 alfonx 803 <id>mschmitz</id>
32     <name>Martin Schmitz</name>
33     <timezone>GMT+1</timezone>
34     <roles>
35     <role>Developer</role>
36     </roles>
37     </developer>
38     <developer>
39 alfonx 755 <id>alfonx</id>
40     <name>Stefan A. Tzeggai</name>
41     <email>[email protected]</email>
42     <url>http://www.wikisquare.de</url>
43     <organization>Wikisquare.de</organization>
44     <organizationUrl>http://www.wikisquare.de</organizationUrl>
45     <timezone>GMT+1</timezone>
46     <roles>
47     <role>Developer</role>
48     <role>Maven package maintainer</role>
49     </roles>
50     </developer>
51     </developers>
52 alfonx 784
53 alfonx 755 <scm>
54     <connection>scm:https://svn.wald.intevation.org/svn/schmitzm</connection>
55     <url>https://svn.wald.intevation.org/svn/schmitzm/trunk</url>
56 alfonx 803 <developerConnection>svn+ssh://developername@svn.wald.intevation.org/schmitzm/trunk</developerConnection>
57 alfonx 755 </scm>
58 alfonx 784
59 alfonx 755 <organization>
60     <url>http://www.wikisquare.de</url>
61     </organization>
62 alfonx 784
63    
64 alfonx 755 <dependencies>
65 alfonx 784
66 alfonx 765 <dependency>
67 alfonx 1261 <groupId>javax.jnlp</groupId>
68     <artifactId>jnlp</artifactId>
69     <version>1.6</version>
70     <type>jar</type>
71     <scope>compile</scope>
72     </dependency>
73    
74     <dependency>
75 alfonx 755 <groupId>org.geotools</groupId>
76     <artifactId>gt-render</artifactId>
77 alfonx 756 <version>${geotools.version}</version>
78 alfonx 755 <type>jar</type>
79     <scope>compile</scope>
80     </dependency>
81    
82     <dependency>
83 alfonx 1207 <groupId>org.geotools.xsd</groupId>
84     <artifactId>gt-xsd-sld</artifactId>
85     <version>${geotools.version}</version>
86     <type>jar</type>
87     <scope>compile</scope>
88     </dependency>
89    
90     <dependency>
91 alfonx 755 <groupId>org.geotools</groupId>
92     <artifactId>gt-shapefile-renderer</artifactId>
93 alfonx 756 <version>${geotools.version}</version>
94 alfonx 755 <type>jar</type>
95     <scope>compile</scope>
96     </dependency>
97    
98     <dependency>
99     <groupId>org.geotools</groupId>
100     <artifactId>gt-legacy</artifactId>
101 alfonx 756 <version>${geotools.version}</version>
102 alfonx 755 <type>jar</type>
103     <scope>compile</scope>
104     </dependency>
105 alfonx 756
106 alfonx 755 <dependency>
107     <groupId>org.geotools</groupId>
108     <artifactId>gt-brewer</artifactId>
109 alfonx 756 <version>${geotools.version}</version>
110 alfonx 755 <type>jar</type>
111     <scope>compile</scope>
112     </dependency>
113 alfonx 756
114 alfonx 755 <dependency>
115     <groupId>org.geotools</groupId>
116     <artifactId>gt-image</artifactId>
117 alfonx 756 <version>${geotools.version}</version>
118 alfonx 755 <type>jar</type>
119     <scope>compile</scope>
120     </dependency>
121 alfonx 756
122 alfonx 755 <dependency>
123     <groupId>org.geotools</groupId>
124 alfonx 758 <artifactId>gt-coverage</artifactId>
125     <version>${geotools.version}</version>
126     <type>jar</type>
127     <scope>compile</scope>
128     </dependency>
129    
130     <dependency>
131     <groupId>org.geotools</groupId>
132 alfonx 755 <artifactId>gt-geotiff</artifactId>
133 alfonx 756 <version>${geotools.version}</version>
134 alfonx 755 <type>jar</type>
135     <scope>compile</scope>
136     </dependency>
137 alfonx 756
138 alfonx 755 <dependency>
139     <groupId>org.geotools</groupId>
140 alfonx 1161 <artifactId>gt-wfs</artifactId>
141     <version>${geotools.version}</version>
142     <type>jar</type>
143     </dependency>
144    
145     <dependency>
146     <groupId>org.geotools</groupId>
147 alfonx 755 <artifactId>gt-swing</artifactId>
148 alfonx 756 <version>${geotools.version}</version>
149 alfonx 755 <type>jar</type>
150     <scope>compile</scope>
151 alfonx 1335 <exclusions>
152     <!-- We use miglayout 3.7.3, not 3.7 -->
153     <exclusion>
154     <groupId>com.miglayout</groupId>
155     <artifactId>miglayout</artifactId>
156     </exclusion>
157     </exclusions>
158 alfonx 755 </dependency>
159    
160     <dependency>
161 alfonx 1176 <groupId>javax.mail</groupId>
162     <artifactId>mail</artifactId>
163     <version>1.4.1</version>
164     <type>jar</type>
165     <scope>compile</scope>
166     </dependency>
167    
168     <dependency>
169 alfonx 755 <groupId>jfree</groupId>
170     <artifactId>jfreechart</artifactId>
171     <version>1.0.13</version>
172 alfonx 803 <scope>compile</scope>
173 alfonx 755 </dependency>
174    
175     <dependency>
176     <groupId>org.geotools</groupId>
177     <artifactId>gt-main</artifactId>
178 alfonx 756 <version>${geotools.version}</version>
179 alfonx 755 <type>jar</type>
180     <scope>compile</scope>
181     </dependency>
182    
183     <dependency>
184     <groupId>org.geotools</groupId>
185     <artifactId>gt-arcgrid</artifactId>
186 alfonx 756 <version>${geotools.version}</version>
187 alfonx 755 <type>jar</type>
188     <scope>compile</scope>
189     </dependency>
190 alfonx 1333 <!---->
191 alfonx 1334 <!-- <dependency> -->
192     <!-- <groupId>org.slf4j</groupId> -->
193     <!-- <artifactId>slf4j-log4j12</artifactId> -->
194     <!-- <version>1.5.11</version> -->
195     <!-- <type>jar</type> -->
196     <!-- <scope>compile</scope> -->
197     <!-- </dependency> -->
198 alfonx 755
199 alfonx 771 <dependency>
200 alfonx 1087 <!-- Logging with log4j. Die MVN dependency fuer 1.2.15 ist defekt. downgraded
201     to 1.2.14 http://jira.codehaus.org/browse/MEV-649 -->
202 alfonx 755 <groupId>log4j</groupId>
203     <artifactId>log4j</artifactId>
204     <version>1.2.14</version>
205     </dependency>
206 alfonx 768
207 alfonx 755 <dependency>
208     <groupId>junit</groupId>
209     <artifactId>junit</artifactId>
210 alfonx 1306 <version>4.8.2</version>
211 alfonx 755 <type>jar</type>
212 alfonx 1305 <scope>test</scope>
213 alfonx 755 </dependency>
214 alfonx 784
215 alfonx 755 <dependency>
216     <groupId>colt</groupId>
217     <artifactId>colt</artifactId>
218     <version>1.2.0</version>
219     <type>jar</type>
220     <scope>compile</scope>
221     </dependency>
222 alfonx 784
223 alfonx 755 <dependency>
224     <groupId>javax.media</groupId>
225     <artifactId>jai_core</artifactId>
226     <version>1.1.3</version>
227     <type>jar</type>
228     <scope>compile</scope>
229     </dependency>
230 alfonx 922
231 alfonx 755 <dependency>
232     <groupId>commons-io</groupId>
233     <artifactId>commons-io</artifactId>
234     <version>1.4</version>
235     <type>jar</type>
236     <scope>compile</scope>
237     </dependency>
238 alfonx 784
239 alfonx 755 <dependency>
240     <groupId>net.jini</groupId>
241     <artifactId>jini-ext</artifactId>
242     <version>2.1</version>
243     <type>jar</type>
244     <scope>compile</scope>
245     </dependency>
246 alfonx 784
247 alfonx 758 <dependency>
248     <groupId>com.miglayout</groupId>
249     <artifactId>miglayout</artifactId>
250 alfonx 1222 <version>3.7.3</version>
251 alfonx 1329 <classifier>swing</classifier>
252 alfonx 1334 <scope>compile</scope>
253 alfonx 758 </dependency>
254 alfonx 784
255 alfonx 758 <dependency>
256 alfonx 796 <groupId>org.jdom</groupId>
257 alfonx 758 <artifactId>jdom</artifactId>
258     <version>1.1</version>
259     </dependency>
260 alfonx 784
261 alfonx 841 <dependency>
262     <groupId>jfree</groupId>
263     <artifactId>jcommon</artifactId>
264     <version>1.0.15</version>
265     <type>jar</type>
266     <scope>compile</scope>
267     </dependency>
268 alfonx 922
269     <dependency>
270 alfonx 1087 <!-- Fuer Sonderzeichenbehandlung -->
271 alfonx 922 <groupId>ant-contrib</groupId>
272     <artifactId>ant-contrib</artifactId>
273     <version>1.0b3</version>
274     <type>jar</type>
275     <scope>provided</scope>
276     </dependency>
277    
278     <dependency>
279 alfonx 1087 <!-- Fuer Sonderzeichenbehandlung -->
280 alfonx 922 <groupId>ant</groupId>
281     <artifactId>ant-nodeps</artifactId>
282     <version>1.6.5</version>
283     <scope>provided</scope>
284     </dependency>
285    
286     <dependency>
287 alfonx 1087 <!-- Fuer Sonderzeichenbehandlung -->
288 alfonx 922 <groupId>com.sun</groupId>
289     <artifactId>tools</artifactId>
290     <version>1.6.0</version>
291     <scope>system</scope>
292     <systemPath>${java.home}/../lib/tools.jar</systemPath>
293     </dependency>
294    
295 alfonx 1161 <dependency>
296     <groupId>org.geotools.jdbc</groupId>
297     <artifactId>gt-jdbc-postgis</artifactId>
298     <version>${geotools.version}</version>
299     <type>jar</type>
300     <scope>compile</scope>
301     </dependency>
302    
303 mojays 1257 <dependency>
304     <groupId>commons-cli</groupId>
305     <artifactId>commons-cli</artifactId>
306     <version>1.2</version>
307     <type>jar</type>
308     <scope>compile</scope>
309     </dependency>
310 alfonx 1343
311     <dependency>
312 alfonx 1344 <!-- Testen fuer Olli -->
313 alfonx 1343 <groupId>net.sourceforge.jexcelapi</groupId>
314     <artifactId>jxl</artifactId>
315     <version>2.6.12</version>
316     <scope>test</scope>
317     </dependency>
318    
319     <dependency>
320     <groupId>org.apache.poi</groupId>
321     <artifactId>poi</artifactId>
322     <version>3.7</version>
323     <type>jar</type>
324     <scope>test</scope>
325     </dependency>
326 alfonx 755 </dependencies>
327    
328 alfonx 784
329 alfonx 755 <build>
330 alfonx 784
331 alfonx 755 <sourceDirectory>src</sourceDirectory>
332     <testSourceDirectory>src_junit</testSourceDirectory>
333 alfonx 832 <testResources>
334     <testResource>
335     <directory>src_junit</directory>
336     <filtering>false</filtering>
337     <excludes>
338     <exclude>**/*.java</exclude>
339     <exclude>**/*.svn*</exclude>
340     <exclude>**/*.cvs</exclude>
341     <exclude>**/*~</exclude>
342     <exclude>**/Thumbs.db</exclude>
343     </excludes>
344     </testResource>
345 alfonx 1212
346     <testResource>
347     <directory>testresources</directory>
348     <filtering>false</filtering>
349     <excludes>
350     <exclude>**/*.java</exclude>
351     <exclude>**/*.svn*</exclude>
352     <exclude>**/*.cvs</exclude>
353     <exclude>**/*~</exclude>
354     <exclude>**/Thumbs.db</exclude>
355     </excludes>
356     </testResource>
357    
358 alfonx 832 </testResources>
359 alfonx 784
360 alfonx 1087 <!-- <outputDirectory>classes</outputDirectory> -->
361     <!-- <testOutputDirectory>test-classes</testOutputDirectory> -->
362     <!-- <directory>dist</directory> -->
363 alfonx 784
364     <resources>
365     <resource>
366     <directory>src</directory>
367     <filtering>false</filtering>
368     <excludes>
369 mojays 805 <exclude>**/*.html</exclude>
370 alfonx 784 <exclude>**/*.java</exclude>
371 alfonx 803 <exclude>**/*.svn*</exclude>
372 alfonx 793 <exclude>**/*.cvs</exclude>
373 alfonx 794 <exclude>**/*~</exclude>
374     <exclude>**/Thumbs.db</exclude>
375 alfonx 784 </excludes>
376     </resource>
377     </resources>
378    
379 alfonx 755 <plugins>
380 alfonx 832
381 alfonx 803 <plugin>
382     <groupId>org.apache.maven.plugins</groupId>
383 alfonx 1087 <artifactId>maven-jar-plugin</artifactId>
384     <version>2.3.1</version>
385     <executions>
386     <execution>
387     <goals>
388     <goal>test-jar</goal>
389     <goal>jar</goal>
390     </goals>
391     </execution>
392     </executions>
393     </plugin>
394    
395     <plugin>
396     <groupId>org.apache.maven.plugins</groupId>
397 alfonx 806 <artifactId>maven-resources-plugin</artifactId>
398     <version>2.4.2</version>
399     </plugin>
400    
401     <plugin>
402     <groupId>org.apache.maven.plugins</groupId>
403 alfonx 803 <artifactId>maven-source-plugin</artifactId>
404 alfonx 810 <version>2.1.1</version>
405 alfonx 803 <executions>
406     <execution>
407     <id>attach-sources</id>
408     <goals>
409     <goal>jar</goal>
410     </goals>
411     </execution>
412     </executions>
413     </plugin>
414 alfonx 784
415 alfonx 755 <plugin>
416 alfonx 791 <groupId>org.apache.maven.plugins</groupId>
417 alfonx 755 <artifactId>maven-compiler-plugin</artifactId>
418 alfonx 804 <version>2.2</version>
419 alfonx 755 <configuration>
420     <source>1.6</source>
421     <target>1.6</target>
422 mojays 805 <excludes>
423     <exclude>**/.svn</exclude> <!-- ??? -->
424     </excludes>
425 alfonx 755 </configuration>
426     </plugin>
427    
428     <plugin>
429     <groupId>org.apache.maven.plugins</groupId>
430     <artifactId>maven-eclipse-plugin</artifactId>
431 alfonx 799 <version>2.8</version>
432 alfonx 755 <configuration>
433     <downloadSources>true</downloadSources>
434 alfonx 790 <downloadJavadocs>false</downloadJavadocs>
435 alfonx 755 </configuration>
436     </plugin>
437    
438 alfonx 922
439    
440     <plugin>
441     <artifactId>maven-antrun-plugin</artifactId>
442     <version>1.3</version>
443    
444     <executions>
445     <execution>
446     <phase>compile</phase>
447     <goals>
448     <goal>run</goal>
449     </goals>
450     <configuration>
451    
452     <tasks>
453     <taskdef resource="net/sf/antcontrib/antlib.xml">
454     <classpath refid="maven.dependency.classpath" />
455     </taskdef>
456 alfonx 1161
457 alfonx 922 <typedef name="native2ascii"
458     classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii">
459     <classpath refid="maven.dependency.classpath" />
460     </typedef>
461    
462     <for param="file"
463     description="Alle .properties nach .propertieNative umbenennen">
464     <path>
465     <fileset dir="src" includes="**/*.properties" />
466     </path>
467     <sequential>
468     <move file="@{file}" overwrite="true" tofile="@{file}Native"
469     verbose="false" preservelastmodified="true" />
470     </sequential>
471     </for>
472    
473     <native2ascii encoding="UTF8" src="src"
474     includes="**/*.propertiesNative" dest="src" ext=".properties" />
475    
476     <for param="file">
477     <path>
478     <fileset dir="src" includes="**/*.propertiesNative" />
479     </path>
480     <sequential>
481     <delete file="@{file}" quiet="true" />
482     </sequential>
483     </for>
484    
485     </tasks>
486     </configuration>
487     </execution>
488     </executions>
489     </plugin>
490    
491 alfonx 755 </plugins>
492 alfonx 784
493 alfonx 755 </build>
494    
495 alfonx 756
496 alfonx 784 <repositories>
497 alfonx 756
498 alfonx 784 <repository>
499     <snapshots>
500     <enabled>false</enabled>
501     </snapshots>
502     <id>central</id>
503     <name>libs-releases</name>
504 alfonx 937 <url>http://artifactory.wikisquare.de/artifactory/libs-releases</url>
505 alfonx 784 </repository>
506 alfonx 783
507 alfonx 784 <repository>
508     <snapshots />
509     <id>snapshots</id>
510     <name>libs-snapshots</name>
511 alfonx 1335 <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots
512     </url>
513 alfonx 784 </repository>
514    
515     </repositories>
516    
517     <distributionManagement>
518    
519     <repository>
520     <id>artifactory.wikisquare.de</id>
521     <name>artifactory.wikisquare.de-releases</name>
522 alfonx 1335 <url>http://artifactory.wikisquare.de/artifactory/libs-releases-local
523     </url>
524 alfonx 784 </repository>
525    
526     <snapshotRepository>
527     <id>artifactory.wikisquare.de</id>
528     <name>artifactory.wikisquare.de-snapshots</name>
529 alfonx 1335 <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots-local
530     </url>
531 alfonx 784 </snapshotRepository>
532    
533     </distributionManagement>
534 alfonx 1268 <profiles>
535     <profile>
536     <id>resourceOperationRemove</id>
537 alfonx 1281 <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
538     the build will remove any lines in the resource bundes that are tagged with
539     REMOVEME_ -->
540 alfonx 1268 <build>
541     <plugins>
542     <plugin>
543     <groupId>org.codehaus.mojo</groupId>
544     <artifactId>exec-maven-plugin</artifactId>
545     <version>1.2</version>
546     <executions>
547     <execution>
548     <phase>generate-sources</phase>
549     <goals>
550     <goal>java</goal>
551     </goals>
552     <configuration>
553     <mainClass>schmitzm.lang.ResourceProviderOperator</mainClass>
554     <arguments>
555 alfonx 1281 <argument>-s</argument>
556 alfonx 1283 <argument>${project.build.directory}/../src</argument>
557 alfonx 1281 <argument>-b</argument>
558 alfonx 1335 <argument>schmitzm.geotools.gui.resource.locales.GTResourceBundle;schmitzm.swing.resource.locales.SwingResourceBundle;schmitzm.geotools.feature.resource.locales.FeatureResourceBundle;schmitzm.jfree.resource.locales.JFreeResourceBundle;schmitzm.lang.resource.locales.LangResourceBundle;schmitzm.mail.resource.locales.MailResourceBundle;schmitzm.data.resource.locales.DataResourceBundle
559     </argument>
560 alfonx 1268 </arguments>
561     </configuration>
562     </execution>
563     </executions>
564     </plugin>
565     </plugins>
566     </build>
567     </profile>
568     </profiles>
569 alfonx 1281
570    
571 alfonx 755 </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