annotate artifacts/pom.xml @ 9801:1d7a72a50183 3.2.x tip

Assume Compose V2, consistently
author Tom Gottfried <tom@intevation.de>
date Thu, 23 Nov 2023 10:14:13 +0100
parents 47eee0be5792
children
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>
9774
823d4afb616c Update Java compatibility
Tom Gottfried <tom@intevation.de>
parents: 9773
diff changeset
25 <source>1.8</source>
823d4afb616c Update Java compatibility
Tom Gottfried <tom@intevation.de>
parents: 9773
diff changeset
26 <target>1.8</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>
9773
71188efb16b0 Make compiler more verbose
Tom Gottfried <tom@intevation.de>
parents: 9769
diff changeset
28 <showDeprecation>true</showDeprecation>
71188efb16b0 Make compiler more verbose
Tom Gottfried <tom@intevation.de>
parents: 9769
diff changeset
29 <showWarnings>true</showWarnings>
105
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
30 </configuration>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
31 </plugin>
3268
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
32 <plugin>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
33 <groupId>org.apache.maven.plugins</groupId>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
34 <artifactId>maven-javadoc-plugin</artifactId>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
35 <version>2.8.1</version>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
36 <configuration>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
37 <show>private</show>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
38 <nohelp>true</nohelp>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
39 </configuration>
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
40 </plugin>
8514
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
41 <plugin>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
42 <artifactId>maven-assembly-plugin</artifactId>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
43 <configuration>
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 <descriptor>src/assembly/assembly.xml</descriptor>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
46 </descriptors>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
47 </configuration>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
48 </plugin>
8859
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
49 <plugin>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
50 <groupId>org.apache.maven.plugins</groupId>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
51 <artifactId>maven-checkstyle-plugin</artifactId>
9794
47eee0be5792 Upgrade to latest Checkstyle plugin supporting used Maven version
Tom Gottfried <tom@intevation.de>
parents: 9774
diff changeset
52 <version>3.1.2</version>
8859
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
53 <configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
54 <configLocation>../checkstyle.xml</configLocation>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
55 <encoding>UTF-8</encoding>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
56 </configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
57 <executions>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
58 <execution>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
59 <id>validate</id>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
60 <phase>validate</phase>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
61 <configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
62 <consoleOutput>true</consoleOutput>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
63 <failsOnError>true</failsOnError>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
64 </configuration>
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 <goal>check</goal>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
67 </goals>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
68 </execution>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
69 </executions>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
70 </plugin>
3268
38eb2b0d4f99 Configured javadoc mojo to include protected/private.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 2328
diff changeset
71 </plugins>
105
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
72 </build>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
73
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
74 <dependencies>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
75 <dependency>
373
7f7d6037d242 Added ehcache support.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 365
diff changeset
76 <groupId>net.sf.ehcache</groupId>
7f7d6037d242 Added ehcache support.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 365
diff changeset
77 <artifactId>ehcache-core</artifactId>
7f7d6037d242 Added ehcache support.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 365
diff changeset
78 <version>2.4.2</version>
7f7d6037d242 Added ehcache support.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 365
diff changeset
79 </dependency>
7f7d6037d242 Added ehcache support.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 365
diff changeset
80 <dependency>
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
81 <groupId>junit</groupId>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
82 <artifactId>junit</artifactId>
9671
9cfc495a9f40 Add minimal test coverage for MapServer connection generation
Tom Gottfried <tom@intevation.de>
parents: 9669
diff changeset
83 <version>4.13</version>
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
84 <scope>test</scope>
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
85 </dependency>
105
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
86 <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
87 <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
88 <artifactId>trove</artifactId>
920
a618dd6d80ea Downgraded Trove to 1.1-beta-5
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 919
diff changeset
89 <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
90 </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
91 <dependency>
389
69d05357c177 Added an exporter (OutGenerator) for waterlevels which currently supports CSV exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 373
diff changeset
92 <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
93 <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
94 <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
95 </dependency>
69d05357c177 Added an exporter (OutGenerator) for waterlevels which currently supports CSV exports.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 373
diff changeset
96 <dependency>
5840
3267eb8a3521 Fixed broken maven ids ... again.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
97 <groupId>org.dive4elements</groupId>
105
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
98 <artifactId>artifact-database</artifactId>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
99 <version>1.0-SNAPSHOT</version>
beb991dc4827 Added a first stub of an WINFO artifact.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 104
diff changeset
100 </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
101 <dependency>
5840
3267eb8a3521 Fixed broken maven ids ... again.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
102 <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
103 <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
104 <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
105 </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
106 <dependency>
9769
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
107 <groupId>org.dive4elements</groupId>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
108 <artifactId>artifacts</artifactId>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
109 <version>1.0-SNAPSHOT</version>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
110 </dependency>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
111 <dependency>
5832
b79f83bdd841 Repair pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5419
diff changeset
112 <groupId>org.dive4elements.river</groupId>
b79f83bdd841 Repair pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5419
diff changeset
113 <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
114 <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
115 </dependency>
152
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
116 <dependency>
7041
0a842a0958c1 Correct group for jfreechart
Andre Heinecke <aheinecke@intevation.de>
parents: 7039
diff changeset
117 <groupId>org.jfree</groupId>
152
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
118 <artifactId>jfreechart</artifactId>
7039
d9fda41b4ec4 Update jfreechart dependency to 1.0.15
Andre Heinecke <aheinecke@intevation.de>
parents: 5842
diff changeset
119 <version>1.0.15</version>
152
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 <dependency>
9769
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
122 <groupId>org.jfree</groupId>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
123 <artifactId>jcommon</artifactId>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
124 <version>1.0.17</version>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
125 </dependency>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
126 <dependency>
152
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
127 <groupId>org.apache.xmlgraphics</groupId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
128 <artifactId>batik-dom</artifactId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
129 <version>1.7</version>
9767
69653f4dd754 Mark runtime dependencies
Tom Gottfried <tom@intevation.de>
parents: 9766
diff changeset
130 <scope>runtime</scope>
152
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
131 </dependency>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
132 <dependency>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
133 <groupId>org.apache.xmlgraphics</groupId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
134 <artifactId>batik-svggen</artifactId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
135 <version>1.7</version>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
136 </dependency>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
137 <dependency>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
138 <groupId>com.lowagie</groupId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
139 <artifactId>itext</artifactId>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
140 <version>2.1.7</version>
956445dd601d Added a helper class to export charts.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 151
diff changeset
141 </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
142 <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
143 <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
144 <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
145 <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
146 </dependency>
979
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
147 <dependency>
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
148 <groupId>com.h2database</groupId>
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
149 <artifactId>h2</artifactId>
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
150 <version>1.3.158</version>
9767
69653f4dd754 Mark runtime dependencies
Tom Gottfried <tom@intevation.de>
parents: 9766
diff changeset
151 <scope>runtime</scope>
979
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
152 </dependency>
2306340d7540 Added schema for datacage db
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 920
diff changeset
153 <dependency>
8452
b9a8463ac636 (issue1732) When duplication wsplgen artificats fix shapefile layers
Andre Heinecke <andre.heinecke@intevation.de>
parents: 7041
diff changeset
154 <groupId>commons-io</groupId>
b9a8463ac636 (issue1732) When duplication wsplgen artificats fix shapefile layers
Andre Heinecke <andre.heinecke@intevation.de>
parents: 7041
diff changeset
155 <artifactId>commons-io</artifactId>
b9a8463ac636 (issue1732) When duplication wsplgen artificats fix shapefile layers
Andre Heinecke <andre.heinecke@intevation.de>
parents: 7041
diff changeset
156 <version>2.4</version>
b9a8463ac636 (issue1732) When duplication wsplgen artificats fix shapefile layers
Andre Heinecke <andre.heinecke@intevation.de>
parents: 7041
diff changeset
157 </dependency>
b9a8463ac636 (issue1732) When duplication wsplgen artificats fix shapefile layers
Andre Heinecke <andre.heinecke@intevation.de>
parents: 7041
diff changeset
158 <dependency>
9769
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
159 <groupId>commons-codec</groupId>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
160 <artifactId>commons-codec</artifactId>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
161 <version>1.4</version>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
162 </dependency>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
163 <dependency>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
164 <groupId>commons-lang</groupId>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
165 <artifactId>commons-lang</artifactId>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
166 <version>2.4</version>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
167 </dependency>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
168 <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
169 <groupId>org.geotools</groupId>
9768
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
170 <artifactId>gt-main</artifactId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
171 <version>${geotools.version}</version>
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 <dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
174 <groupId>org.geotools</groupId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
175 <artifactId>gt-api</artifactId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
176 <version>${geotools.version}</version>
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 <dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
179 <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
180 <artifactId>gt-shapefile</artifactId>
9768
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
181 <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
182 </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
183 <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
184 <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
185 <artifactId>gt-epsg-wkt</artifactId>
9768
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
186 <version>${geotools.version}</version>
9767
69653f4dd754 Mark runtime dependencies
Tom Gottfried <tom@intevation.de>
parents: 9766
diff changeset
187 <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
188 </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
189 <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
190 <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
191 <artifactId>gt-geojson</artifactId>
9768
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
192 <version>${geotools.version}</version>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
193 </dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
194 <dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
195 <groupId>org.geotools</groupId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
196 <artifactId>gt-referencing</artifactId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
197 <version>${geotools.version}</version>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
198 </dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
199 <dependency>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
200 <groupId>org.geotools</groupId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
201 <artifactId>gt-opengis</artifactId>
70176fc45db0 Complement GeoTools in POM
Tom Gottfried <tom@intevation.de>
parents: 9767
diff changeset
202 <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
203 </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
204 <dependency>
8502
7f63ad20d4f0 Whitespace-cleanup in XML-files.
"Tom Gottfried <tom@intevation.de>"
parents: 8452
diff changeset
205 <groupId>org.json</groupId>
7f63ad20d4f0 Whitespace-cleanup in XML-files.
"Tom Gottfried <tom@intevation.de>"
parents: 8452
diff changeset
206 <artifactId>json</artifactId>
7f63ad20d4f0 Whitespace-cleanup in XML-files.
"Tom Gottfried <tom@intevation.de>"
parents: 8452
diff changeset
207 <version>20090211</version>
2175
3f90f4d37c8d Render manual points in longitudinal sections.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents: 1129
diff changeset
208 </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
209 <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
210 <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
211 <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
212 <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
213 </dependency>
2176
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
214 <dependency>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
215 <groupId>net.sf.jasperreports</groupId>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
216 <artifactId>jasperreports</artifactId>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
217 <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
218 <exclusions>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8514
diff changeset
219 <exclusion>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8514
diff changeset
220 <groupId>jfree</groupId>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8514
diff changeset
221 <artifactId>jfreechart</artifactId>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8514
diff changeset
222 </exclusion>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8514
diff changeset
223 </exclusions>
2176
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
224 </dependency>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
225 <dependency>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
226 <groupId>org.codehaus.groovy</groupId>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
227 <artifactId>groovy-all</artifactId>
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
228 <version>1.6.0</version>
9767
69653f4dd754 Mark runtime dependencies
Tom Gottfried <tom@intevation.de>
parents: 9766
diff changeset
229 <scope>runtime</scope>
2176
65dac9cf6ff5 Issue 138.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 2175
diff changeset
230 </dependency>
9769
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
231 <dependency>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
232 <groupId>org.apache.logging.log4j</groupId>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
233 <artifactId>log4j-api</artifactId>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
234 <version>2.17.1</version>
d43b263bb704 Declare used dependencies
Tom Gottfried <tom@intevation.de>
parents: 9768
diff changeset
235 </dependency>
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
236 </dependencies>
396
5d0e973f203e fix flys/issue30
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 389
diff changeset
237 <repositories>
5d0e973f203e fix flys/issue30
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 389
diff changeset
238 <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
239 <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
240 <name>GeoTools2 Repository including JTS</name>
9667
005302ec461d Update OSGEO repository URL
Tom Gottfried <tom@intevation.de>
parents: 8859
diff changeset
241 <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
242 </repository>
396
5d0e973f203e fix flys/issue30
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 389
diff changeset
243 </repositories>
104
b3792346cb10 Added initial mvn project for FLYS artifacts.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
244 </project>

http://dive4elements.wald.intevation.org