annotate artifacts/pom-oracle.xml @ 9713:aef987124822 3.2.x

Do not rely on database default for setting hws_lines.official to 0 It's not under the control of the importer whether the field is rendered into an INSERT statement, whether it's actually set or not. If it is unset but rendered into the statement, the field would be set to NULL. Thus, always set it explicitly. While here, remove an unused import.
author Tom Gottfried <tom@intevation.de>
date Fri, 12 Mar 2021 15:11:44 +0100
parents e5d1a10d54ae
children 9ec4686badae
rev   line source
8515
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@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"
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@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">
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
3 <modelVersion>4.0.0</modelVersion>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
4
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
5 <groupId>org.dive4elements.river</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
6 <artifactId>river-artifacts</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
7 <version>1.0-SNAPSHOT</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
8 <packaging>jar</packaging>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
9
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
10 <name>river-artifacts</name>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
11 <url>http://maven.apache.org</url>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
12
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
13 <properties>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
15 </properties>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
16
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
17 <build>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
18 <plugins>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
19 <plugin>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
20 <groupId>org.apache.maven.plugins</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
21 <artifactId>maven-compiler-plugin</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
22 <version>2.0.2</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
23 <configuration>
8763
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8516
diff changeset
24 <source>1.7</source>
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8516
diff changeset
25 <target>1.7</target>
9669
aee871c60599 Ensure the build does not fail due to non-ASCII characters
Tom Gottfried <tom@intevation.de>
parents: 9668
diff changeset
26 <encoding>UTF-8</encoding>
8515
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
27 </configuration>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
28 </plugin>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
29 <plugin>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
30 <groupId>org.apache.maven.plugins</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
31 <artifactId>maven-javadoc-plugin</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
32 <version>2.8.1</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
33 <configuration>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
34 <show>private</show>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
35 <nohelp>true</nohelp>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
36 </configuration>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
37 </plugin>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
38 <plugin>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
39 <artifactId>maven-assembly-plugin</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
40 <configuration>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
41 <descriptors>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
42 <descriptor>src/assembly/assembly.xml</descriptor>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
43 </descriptors>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
44 </configuration>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
45 </plugin>
9678
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
46 <plugin>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
47 <groupId>org.apache.maven.plugins</groupId>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
48 <artifactId>maven-checkstyle-plugin</artifactId>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
49 <version>3.0.0</version>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
50 <configuration>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
51 <configLocation>../checkstyle.xml</configLocation>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
52 <encoding>UTF-8</encoding>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
53 </configuration>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
54 <executions>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
55 <execution>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
56 <id>validate</id>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
57 <phase>validate</phase>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
58 <configuration>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
59 <consoleOutput>true</consoleOutput>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
60 <failsOnError>true</failsOnError>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
61 </configuration>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
62 <goals>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
63 <goal>check</goal>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
64 </goals>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
65 </execution>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
66 </executions>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
67 </plugin>
8515
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
68 </plugins>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
69 </build>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
70
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
71 <dependencies>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
72 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
73 <groupId>net.sf.ehcache</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
74 <artifactId>ehcache-core</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
75 <version>2.4.2</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
76 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
77 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
78 <groupId>junit</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
79 <artifactId>junit</artifactId>
9678
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
80 <version>4.13</version>
8515
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
81 <scope>test</scope>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
82 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
83 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
84 <groupId>trove</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
85 <artifactId>trove</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
86 <version>1.1-beta-5</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
87 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
88 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
89 <groupId>net.sf.opencsv</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
90 <artifactId>opencsv</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
91 <version>2.0</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
92 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
93 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
94 <groupId>org.dive4elements</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
95 <artifactId>artifact-database</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
96 <version>1.0-SNAPSHOT</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
97 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
98 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
99 <groupId>org.dive4elements</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
100 <artifactId>artifacts-common</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
101 <version>1.0-SNAPSHOT</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
102 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
103 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
104 <groupId>org.dive4elements.river</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
105 <artifactId>river-backend</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
106 <version>1.0-SNAPSHOT-ora</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
107 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
108 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
109 <groupId>org.jfree</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
110 <artifactId>jfreechart</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
111 <version>1.0.15</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
112 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
113 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
114 <groupId>org.apache.xmlgraphics</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
115 <artifactId>batik-dom</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
116 <version>1.7</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
117 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
118 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
119 <groupId>org.apache.xmlgraphics</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
120 <artifactId>batik-svggen</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
121 <version>1.7</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
122 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
123 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
124 <groupId>com.lowagie</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
125 <artifactId>itext</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
126 <version>2.1.7</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
127 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
128 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
129 <groupId>org.apache.commons</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
130 <artifactId>commons-math</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
131 <version>2.2</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
132 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
133 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
134 <groupId>com.h2database</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
135 <artifactId>h2</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
136 <version>1.3.158</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
137 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
138 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
139 <groupId>commons-io</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
140 <artifactId>commons-io</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
141 <version>2.4</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
142 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
143 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
144 <groupId>org.geotools</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
145 <artifactId>gt-shapefile</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
146 <version>2.7.2</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
147 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
148 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
149 <groupId>org.geotools</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
150 <artifactId>gt-epsg-wkt</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
151 <version>2.7.2</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
152 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
153 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
154 <groupId>org.geotools</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
155 <artifactId>gt-geojson</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
156 <version>2.7.2</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
157 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
158 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
159 <groupId>org.geotools</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
160 <artifactId>gt-swing</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
161 <version>2.7.2</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
162 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
163 <dependency>
8770
363016ee831a Add unstated dependency.
Tom Gottfried <tom@intevation.de>
parents: 8769
diff changeset
164 <groupId>org.hibernatespatial</groupId>
363016ee831a Add unstated dependency.
Tom Gottfried <tom@intevation.de>
parents: 8769
diff changeset
165 <artifactId>hibernate-spatial</artifactId>
363016ee831a Add unstated dependency.
Tom Gottfried <tom@intevation.de>
parents: 8769
diff changeset
166 <version>1.1.1</version>
363016ee831a Add unstated dependency.
Tom Gottfried <tom@intevation.de>
parents: 8769
diff changeset
167 </dependency>
363016ee831a Add unstated dependency.
Tom Gottfried <tom@intevation.de>
parents: 8769
diff changeset
168 <dependency>
8515
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
169 <groupId>org.json</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
170 <artifactId>json</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
171 <version>20090211</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
172 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
173 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
174 <groupId>org.apache.velocity</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
175 <artifactId>velocity</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
176 <version>1.7</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
177 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
178 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
179 <groupId>net.sf.jasperreports</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
180 <artifactId>jasperreports</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
181 <version>4.5.0</version>
8516
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8515
diff changeset
182 <exclusions>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8515
diff changeset
183 <exclusion>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8515
diff changeset
184 <groupId>jfree</groupId>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8515
diff changeset
185 <artifactId>jfreechart</artifactId>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8515
diff changeset
186 </exclusion>
dc02c7f96ad8 Exclude transitive dependency because of conflicting version which breaks charting.
"Tom Gottfried <tom@intevation.de>"
parents: 8515
diff changeset
187 </exclusions>
8515
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
188 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
189 <dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
190 <groupId>org.codehaus.groovy</groupId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
191 <artifactId>groovy-all</artifactId>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
192 <version>1.6.0</version>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
193 </dependency>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
194 </dependencies>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
195 <repositories>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
196 <repository>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
197 <id>gt2.repo</id>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
198 <name>GeoTools2 Repository including JTS</name>
9668
5b258de7f5a1 Update OSGEO repository URL
Tom Gottfried <tom@intevation.de>
parents: 8770
diff changeset
199 <url>https://repo.osgeo.org/repository/release</url>
8515
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
200 </repository>
8770
363016ee831a Add unstated dependency.
Tom Gottfried <tom@intevation.de>
parents: 8769
diff changeset
201 <repository>
363016ee831a Add unstated dependency.
Tom Gottfried <tom@intevation.de>
parents: 8769
diff changeset
202 <id>Hibernate Spatial repo</id>
363016ee831a Add unstated dependency.
Tom Gottfried <tom@intevation.de>
parents: 8769
diff changeset
203 <url>http://www.hibernatespatial.org/repository</url>
363016ee831a Add unstated dependency.
Tom Gottfried <tom@intevation.de>
parents: 8769
diff changeset
204 </repository>
8515
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
205 </repositories>
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
206 </project>

http://dive4elements.wald.intevation.org