annotate artifacts/pom.xml @ 9768:70176fc45db0 3.2.x

Complement GeoTools in POM
author Tom Gottfried <tom@intevation.de>
date Mon, 16 Jan 2023 14:20:34 +0100
parents 69653f4dd754
children d43b263bb704
rev   line source
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
3 <modelVersion>4.0.0</modelVersion>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
4
5832
b79f83bdd841 Repair pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5419
diff changeset
5 <groupId>org.dive4elements.river</groupId>
b79f83bdd841 Repair pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5419
diff changeset
6 <artifactId>river-artifacts</artifactId>
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
7 <version>1.0-SNAPSHOT</version>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
8 <packaging>jar</packaging>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
9
5832
b79f83bdd841 Repair pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5419
diff changeset
10 <name>river-artifacts</name>
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
11 <url>http://maven.apache.org</url>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
12
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
13 <properties>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9768
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
15 <geotools.version>2.7.2</geotools.version>
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
16 </properties>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
17
105
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
18 <build>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
19 <plugins>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
20 <plugin>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
21 <groupId>org.apache.maven.plugins</groupId>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
22 <artifactId>maven-compiler-plugin</artifactId>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
23 <version>2.0.2</version>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
24 <configuration>
8763
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8516
diff changeset
25 <source>1.7</source>
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8516
diff changeset
26 <target>1.7</target>
9669
aee871c60599 Ensure the build does not fail due to non-ASCII characters
Tom Gottfried <tom@intevation.de>
parents: 9667
diff changeset
27 <encoding>UTF-8</encoding>
105
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
28 </configuration>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
29 </plugin>
3268
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
30 <plugin>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
31 <groupId>org.apache.maven.plugins</groupId>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
32 <artifactId>maven-javadoc-plugin</artifactId>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
33 <version>2.8.1</version>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
34 <configuration>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
35 <show>private</show>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
36 <nohelp>true</nohelp>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
37 </configuration>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
38 </plugin>
8514
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
39 <plugin>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
40 <artifactId>maven-assembly-plugin</artifactId>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
41 <configuration>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
42 <descriptors>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
43 <descriptor>src/assembly/assembly.xml</descriptor>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
44 </descriptors>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
45 </configuration>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
46 </plugin>
8859
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
47 <plugin>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
48 <groupId>org.apache.maven.plugins</groupId>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
49 <artifactId>maven-checkstyle-plugin</artifactId>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
50 <version>3.0.0</version>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
51 <configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
52 <configLocation>../checkstyle.xml</configLocation>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
53 <encoding>UTF-8</encoding>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
54 </configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
55 <executions>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
56 <execution>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
57 <id>validate</id>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
58 <phase>validate</phase>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
59 <configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
60 <consoleOutput>true</consoleOutput>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
61 <failsOnError>true</failsOnError>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
62 </configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
63 <goals>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
64 <goal>check</goal>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
65 </goals>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
66 </execution>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
67 </executions>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
68 </plugin>
3268
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
69 </plugins>
105
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
70 </build>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
71
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
72 <dependencies>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
73 <dependency>
373
7f7d6037d242 Added ehcache support.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 365
diff changeset
74 <groupId>net.sf.ehcache</groupId>
7f7d6037d242 Added ehcache support.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 365
diff changeset
75 <artifactId>ehcache-core</artifactId>
7f7d6037d242 Added ehcache support.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 365
diff changeset
76 <version>2.4.2</version>
7f7d6037d242 Added ehcache support.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 365
diff changeset
77 </dependency>
7f7d6037d242 Added ehcache support.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 365
diff changeset
78 <dependency>
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
79 <groupId>junit</groupId>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
80 <artifactId>junit</artifactId>
9671
9cfc495a9f40 Add minimal test coverage for MapServer connection generation
Tom Gottfried <tom@intevation.de>
parents: 9669
diff changeset
81 <version>4.13</version>
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
82 <scope>test</scope>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
83 </dependency>
105
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
84 <dependency>
365
c13ca9d632d6 Introduced GNU Trove to store WQKms values in a more performant data structure.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 338
diff changeset
85 <groupId>trove</groupId>
c13ca9d632d6 Introduced GNU Trove to store WQKms values in a more performant data structure.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 338
diff changeset
86 <artifactId>trove</artifactId>
920
a618dd6d80ea Downgraded Trove to 1.1-beta-5
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 919
diff changeset
87 <version>1.1-beta-5</version>
365
c13ca9d632d6 Introduced GNU Trove to store WQKms values in a more performant data structure.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 338
diff changeset
88 </dependency>
c13ca9d632d6 Introduced GNU Trove to store WQKms values in a more performant data structure.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 338
diff changeset
89 <dependency>
389
69d05357c177 Added an exporter (OutGenerator) for waterlevels which currently supports CSV exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 373
diff changeset
90 <groupId>net.sf.opencsv</groupId>
69d05357c177 Added an exporter (OutGenerator) for waterlevels which currently supports CSV exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 373
diff changeset
91 <artifactId>opencsv</artifactId>
69d05357c177 Added an exporter (OutGenerator) for waterlevels which currently supports CSV exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 373
diff changeset
92 <version>2.0</version>
69d05357c177 Added an exporter (OutGenerator) for waterlevels which currently supports CSV exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 373
diff changeset
93 </dependency>
69d05357c177 Added an exporter (OutGenerator) for waterlevels which currently supports CSV exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 373
diff changeset
94 <dependency>
5840
3267eb8a3521 Fixed broken maven ids ... again.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
95 <groupId>org.dive4elements</groupId>
105
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
96 <artifactId>artifact-database</artifactId>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
97 <version>1.0-SNAPSHOT</version>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
98 </dependency>
106
5864c41219db Initializes a TransitionEngine storing all transitions for each artifact at the application start.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 105
diff changeset
99 <dependency>
5840
3267eb8a3521 Fixed broken maven ids ... again.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
100 <groupId>org.dive4elements</groupId>
106
5864c41219db Initializes a TransitionEngine storing all transitions for each artifact at the application start.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 105
diff changeset
101 <artifactId>artifacts-common</artifactId>
5864c41219db Initializes a TransitionEngine storing all transitions for each artifact at the application start.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 105
diff changeset
102 <version>1.0-SNAPSHOT</version>
5864c41219db Initializes a TransitionEngine storing all transitions for each artifact at the application start.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 105
diff changeset
103 </dependency>
132
8be4a837f20a Added support for the flys backend and an example how to use it.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 106
diff changeset
104 <dependency>
5832
b79f83bdd841 Repair pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5419
diff changeset
105 <groupId>org.dive4elements.river</groupId>
b79f83bdd841 Repair pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5419
diff changeset
106 <artifactId>river-backend</artifactId>
132
8be4a837f20a Added support for the flys backend and an example how to use it.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 106
diff changeset
107 <version>1.0-SNAPSHOT</version>
8be4a837f20a Added support for the flys backend and an example how to use it.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 106
diff changeset
108 </dependency>
152
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
109 <dependency>
7041
0a842a0958c1 Correct group for jfreechart
Andre Heinecke <aheinecke@intevation.de>
parents: 7039
diff changeset
110 <groupId>org.jfree</groupId>
152
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
111 <artifactId>jfreechart</artifactId>
7039
d9fda41b4ec4 Update jfreechart dependency to 1.0.15
Andre Heinecke <aheinecke@intevation.de>
parents: 5842
diff changeset
112 <version>1.0.15</version>
152
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
113 </dependency>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
114 <dependency>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
115 <groupId>org.apache.xmlgraphics</groupId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
116 <artifactId>batik-dom</artifactId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
117 <version>1.7</version>
9767
69653f4dd754 Mark runtime dependencies
Tom Gottfried <tom@intevation.de>
parents: 9766
diff changeset
118 <scope>runtime</scope>
152
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
119 </dependency>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
120 <dependency>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
121 <groupId>org.apache.xmlgraphics</groupId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
122 <artifactId>batik-svggen</artifactId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
123 <version>1.7</version>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
124 </dependency>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
125 <dependency>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
126 <groupId>com.lowagie</groupId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
127 <artifactId>itext</artifactId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
128 <version>2.1.7</version>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
129 </dependency>
338
cf84f0f926e9 Added dependency to Apache Commons Math 2.2 (Apache License 2.0)
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 152
diff changeset
130 <dependency>
cf84f0f926e9 Added dependency to Apache Commons Math 2.2 (Apache License 2.0)
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 152
diff changeset
131 <groupId>org.apache.commons</groupId>
cf84f0f926e9 Added dependency to Apache Commons Math 2.2 (Apache License 2.0)
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 152
diff changeset
132 <artifactId>commons-math</artifactId>
cf84f0f926e9 Added dependency to Apache Commons Math 2.2 (Apache License 2.0)
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 152
diff changeset
133 <version>2.2</version>
cf84f0f926e9 Added dependency to Apache Commons Math 2.2 (Apache License 2.0)
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 152
diff changeset
134 </dependency>
979
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
135 <dependency>
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
136 <groupId>com.h2database</groupId>
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
137 <artifactId>h2</artifactId>
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
138 <version>1.3.158</version>
9767
69653f4dd754 Mark runtime dependencies
Tom Gottfried <tom@intevation.de>
parents: 9766
diff changeset
139 <scope>runtime</scope>
979
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
140 </dependency>
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
141 <dependency>
8452
b9a8463ac636 (issue1732) When duplication wsplgen artificats fix shapefile layers
Andre Heinecke <andre.heinecke@intevation.de>
parents: 7041
diff changeset
142 <groupId>commons-io</groupId>
b9a8463ac636 (issue1732) When duplication wsplgen artificats fix shapefile layers
Andre Heinecke <andre.heinecke@intevation.de>
parents: 7041
diff changeset
143 <artifactId>commons-io</artifactId>
b9a8463ac636 (issue1732) When duplication wsplgen artificats fix shapefile layers
Andre Heinecke <andre.heinecke@intevation.de>
parents: 7041
diff changeset
144 <version>2.4</version>
b9a8463ac636 (issue1732) When duplication wsplgen artificats fix shapefile layers
Andre Heinecke <andre.heinecke@intevation.de>
parents: 7041
diff changeset
145 </dependency>
b9a8463ac636 (issue1732) When duplication wsplgen artificats fix shapefile layers
Andre Heinecke <andre.heinecke@intevation.de>
parents: 7041
diff changeset
146 <dependency>
1106
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
147 <groupId>org.geotools</groupId>
9768
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
148 <artifactId>gt-main</artifactId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
149 <version>${geotools.version}</version>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
150 </dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
151 <dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
152 <groupId>org.geotools</groupId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
153 <artifactId>gt-api</artifactId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
154 <version>${geotools.version}</version>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
155 </dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
156 <dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
157 <groupId>org.geotools</groupId>
1106
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
158 <artifactId>gt-shapefile</artifactId>
9768
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
159 <version>${geotools.version}</version>
1106
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
160 </dependency>
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
161 <dependency>
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
162 <groupId>org.geotools</groupId>
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
163 <artifactId>gt-epsg-wkt</artifactId>
9768
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
164 <version>${geotools.version}</version>
9767
69653f4dd754 Mark runtime dependencies
Tom Gottfried <tom@intevation.de>
parents: 9766
diff changeset
165 <scope>runtime</scope>
1106
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
166 </dependency>
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
167 <dependency>
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
168 <groupId>org.geotools</groupId>
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
169 <artifactId>gt-geojson</artifactId>
9768
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
170 <version>${geotools.version}</version>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
171 </dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
172 <dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
173 <groupId>org.geotools</groupId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
174 <artifactId>gt-referencing</artifactId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
175 <version>${geotools.version}</version>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
176 </dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
177 <dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
178 <groupId>org.geotools</groupId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
179 <artifactId>gt-opengis</artifactId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
180 <version>${geotools.version}</version>
1106
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
181 </dependency>
2328
0cc0e232fa35 Added standalone demo application that prints all layers of a WMS to file.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 2176
diff changeset
182 <dependency>
8502
7f63ad20d4f0 Whitespace-cleanup in XML-files.
"Tom Gottfried <tom@intevation.de>"
parents: 8452
diff changeset
183 <groupId>org.json</groupId>
7f63ad20d4f0 Whitespace-cleanup in XML-files.
"Tom Gottfried <tom@intevation.de>"
parents: 8452
diff changeset
184 <artifactId>json</artifactId>
7f63ad20d4f0 Whitespace-cleanup in XML-files.
"Tom Gottfried <tom@intevation.de>"
parents: 8452
diff changeset
185 <version>20090211</version>
2175
3f90f4d37c8d Render manual points in longitudinal sections.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1129
diff changeset
186 </dependency>
1129
da3c3e286c88 Introduced a MapfileGenerator that creates Mapserver specific mapfiles based on WSPLGEN results read from filesystem.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1106
diff changeset
187 <dependency>
da3c3e286c88 Introduced a MapfileGenerator that creates Mapserver specific mapfiles based on WSPLGEN results read from filesystem.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1106
diff changeset
188 <groupId>org.apache.velocity</groupId>
da3c3e286c88 Introduced a MapfileGenerator that creates Mapserver specific mapfiles based on WSPLGEN results read from filesystem.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1106
diff changeset
189 <artifactId>velocity</artifactId>
da3c3e286c88 Introduced a MapfileGenerator that creates Mapserver specific mapfiles based on WSPLGEN results read from filesystem.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1106
diff changeset
190 <version>1.7</version>
da3c3e286c88 Introduced a MapfileGenerator that creates Mapserver specific mapfiles based on WSPLGEN results read from filesystem.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1106
diff changeset
191 </dependency>
2176
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
192 <dependency>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
193 <groupId>net.sf.jasperreports</groupId>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
194 <artifactId>jasperreports</artifactId>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
195 <version>4.5.0</version>
8516
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8514
diff changeset
196 <exclusions>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8514
diff changeset
197 <exclusion>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8514
diff changeset
198 <groupId>jfree</groupId>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8514
diff changeset
199 <artifactId>jfreechart</artifactId>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8514
diff changeset
200 </exclusion>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8514
diff changeset
201 </exclusions>
2176
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
202 </dependency>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
203 <dependency>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
204 <groupId>org.codehaus.groovy</groupId>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
205 <artifactId>groovy-all</artifactId>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
206 <version>1.6.0</version>
9767
69653f4dd754 Mark runtime dependencies
Tom Gottfried <tom@intevation.de>
parents: 9766
diff changeset
207 <scope>runtime</scope>
2176
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
208 </dependency>
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
209 </dependencies>
396
5d0e973f203e fix flys/issue30
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 389
diff changeset
210 <repositories>
5d0e973f203e fix flys/issue30
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 389
diff changeset
211 <repository>
1106
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
212 <id>gt2.repo</id>
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
213 <name>GeoTools2 Repository including JTS</name>
9667
005302ec461d Update OSGEO repository URL
Tom Gottfried <tom@intevation.de>
parents: 8859
diff changeset
214 <url>https://repo.osgeo.org/repository/release</url>
1106
e9f66d63bdd0 Write user defined barriers into a shapefile that is placed in the Artifact's directory.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 979
diff changeset
215 </repository>
396
5d0e973f203e fix flys/issue30
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 389
diff changeset
216 </repositories>
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
217 </project>

http://dive4elements.wald.intevation.org