annotate backend/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 ee1b409af91c
rev   line source
165
a69b8494fcac Created a new empty maven project
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"
a69b8494fcac Created a new empty maven project
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">
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
3 <modelVersion>4.0.0</modelVersion>
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
4
5855
cff1eea9854f adjust importer build-script to new names
Tom Gottfried <tom.gottfried@intevation.de>
parents: 5838
diff changeset
5 <groupId>org.dive4elements.river</groupId>
8515
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
6 <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: 8502
diff changeset
7 <version>1.0-SNAPSHOT-ora</version>
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
8 <packaging>jar</packaging>
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
9
8515
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
10 <name>river-backend</name>
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
11 <url>http://maven.apache.org</url>
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
12
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
13 <properties>
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
15 </properties>
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
16
167
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
17 <build>
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
18 <plugins>
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
19 <plugin>
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
20 <groupId>org.apache.maven.plugins</groupId>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
21 <artifactId>maven-compiler-plugin</artifactId>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
22 <version>2.0.2</version>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
23 <configuration>
8763
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
24 <source>1.7</source>
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
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: 8801
diff changeset
26 <encoding>UTF-8</encoding>
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
27 </configuration>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
28 </plugin>
5052
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
29 <plugin>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
30 <groupId>org.apache.maven.plugins</groupId>
8772
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
31 <artifactId>maven-dependency-plugin</artifactId>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
32 <version>2.10</version>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
33 <executions>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
34 <execution>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
35 <id>analyze</id>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
36 <goals>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
37 <goal>analyze-only</goal>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
38 </goals>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
39 <configuration>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
40 <failOnWarning>true</failOnWarning>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
41 <ignoreNonCompile>true</ignoreNonCompile>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
42 </configuration>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
43 </execution>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
44 </executions>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
45 </plugin>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
46 <plugin>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
47 <groupId>org.apache.maven.plugins</groupId>
5052
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
48 <artifactId>maven-jar-plugin</artifactId>
9676
faccc67cac1d Add plugin versions where missing
Tom Gottfried <tom@intevation.de>
parents: 9669
diff changeset
49 <version>2.4</version>
5052
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
50 <configuration>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
51 <archive>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
52 <manifest>
5855
cff1eea9854f adjust importer build-script to new names
Tom Gottfried <tom.gottfried@intevation.de>
parents: 5838
diff changeset
53 <mainClass>org.dive4elements.river.importer.Importer</mainClass>
cff1eea9854f adjust importer build-script to new names
Tom Gottfried <tom.gottfried@intevation.de>
parents: 5838
diff changeset
54 <packageName>org.dive4elements.river.importer</packageName>
5052
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
55 </manifest>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
56 </archive>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
57 </configuration>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
58 </plugin>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
59 <plugin>
8675
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
60 <groupId>org.apache.maven.plugins</groupId>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
61 <artifactId>maven-shade-plugin</artifactId>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
62 <version>2.3</version>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
63 <configuration>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
64 <transformers>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
65 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
66 <mainClass>org.dive4elements.river.importer.Importer</mainClass>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
67 </transformer>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
68 </transformers>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
69 </configuration>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
70 <executions>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
71 <execution>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
72 <phase>package</phase>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
73 <goals>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
74 <goal>shade</goal>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
75 </goals>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
76 </execution>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
77 </executions>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
78 </plugin>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
79 <plugin>
5052
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
80 <artifactId>maven-assembly-plugin</artifactId>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
81 <configuration>
8675
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
82 <descriptors>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
83 <descriptor>src/assembly/assembly.xml</descriptor>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8515
diff changeset
84 </descriptors>
5052
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
85 </configuration>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
86 </plugin>
9678
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
87 <plugin>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
88 <groupId>org.apache.maven.plugins</groupId>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
89 <artifactId>maven-checkstyle-plugin</artifactId>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
90 <version>3.0.0</version>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
91 <configuration>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
92 <configLocation>../checkstyle.xml</configLocation>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
93 <encoding>UTF-8</encoding>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
94 </configuration>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
95 <executions>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
96 <execution>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
97 <id>validate</id>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
98 <phase>validate</phase>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
99 <configuration>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
100 <consoleOutput>true</consoleOutput>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
101 <failsOnError>true</failsOnError>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
102 </configuration>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
103 <goals>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
104 <goal>check</goal>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
105 </goals>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
106 </execution>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
107 </executions>
e5d1a10d54ae Fixup */pom-oracle.xml
Tom Gottfried <tom@intevation.de>
parents: 9677
diff changeset
108 </plugin>
167
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
109 </plugins>
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
110 </build>
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
111
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
112 <dependencies>
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
113 <dependency>
5857
60141466b503 Backend: Fixed Oracle pom.xml and README.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5855
diff changeset
114 <groupId>org.dive4elements</groupId>
175
7cdac4324609 Added dependency to artifacts-commons to be able to use the global configuration of the artifact database.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 169
diff changeset
115 <artifactId>artifacts-common</artifactId>
7cdac4324609 Added dependency to artifacts-commons to be able to use the global configuration of the artifact database.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 169
diff changeset
116 <version>1.0-SNAPSHOT</version>
8502
7f63ad20d4f0 Whitespace-cleanup in XML-files.
"Tom Gottfried <tom@intevation.de>"
parents: 5857
diff changeset
117 </dependency>
175
7cdac4324609 Added dependency to artifacts-commons to be able to use the global configuration of the artifact database.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 169
diff changeset
118 <dependency>
8801
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
119 <!-- Add less unsave version of transitive hibernate dependency -->
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
120 <groupId>commons-collections</groupId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
121 <artifactId>commons-collections</artifactId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
122 <version>3.2.2</version>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
123 <scope>runtime</scope>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
124 </dependency>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
125 <dependency>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
126 <groupId>org.hibernate</groupId>
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
127 <artifactId>hibernate-core</artifactId>
8515
01d71ff84d43 Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
128 <version>3.6.10.Final</version>
8801
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
129 <exclusions>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
130 <!-- exclude unsafe transitive dependency -->
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
131 <exclusion>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
132 <groupId>commons-collections</groupId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
133 <artifactId>commons-collections</artifactId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
134 </exclusion>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
135 </exclusions>
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
136 </dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
137 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
138 <groupId>org.hibernate.javax.persistence</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
139 <artifactId>hibernate-jpa-2.0-api</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
140 <version>1.0.1.Final</version>
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
141 </dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
142 <dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
143 <groupId>log4j</groupId>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
144 <artifactId>log4j</artifactId>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
145 <version>1.2.14</version>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
146 </dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
147 <dependency>
8763
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
148 <groupId>org.apache.commons</groupId>
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
149 <artifactId>commons-dbcp2</artifactId>
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
150 <version>2.1.1</version>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
151 </dependency>
169
7929f4144d2f Bound Apache Commons DBCP with Hibernate.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 168
diff changeset
152 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
153 <groupId>com.vividsolutions</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
154 <artifactId>jts</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
155 <version>1.11</version>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
156 </dependency>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
157 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
158 <groupId>org.hibernatespatial</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
159 <artifactId>hibernate-spatial-oracle</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
160 <version>1.1.1</version>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
161 <scope>runtime</scope>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
162 </dependency>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
163 <dependency>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
164 <groupId>ojdbc</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
165 <artifactId>ojdbc</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
166 <version>0</version>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
167 <scope>runtime</scope>
5053
61be4813eb13 Add pom-oracle with ojdbc dependency
Andre Heinecke <aheinecke@intevation.de>
parents: 5052
diff changeset
168 </dependency>
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
169 </dependencies>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
170
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
171 <repositories>
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
172 <repository>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
173 <id>Hibernate Spatial repo</id>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
174 <url>http://www.hibernatespatial.org/repository</url>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
175 </repository>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
176 </repositories>
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
177 </project>

http://dive4elements.wald.intevation.org