annotate backend/pom.xml @ 9658:d86c7cb68b41

Importer (s/u-info) extensions: daily discharge: detecting, logging and skipping lines with missing date or q, or duplicate date, detecting wrong column titles and cancelling the import, specific error message if gauge not found
author mschaefer
date Mon, 23 Mar 2020 15:33:40 +0100
parents fda171e16988
children 9ec4686badae
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
5830
160f53ee0870 Repaired pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5122
diff changeset
5 <groupId>org.dive4elements.river</groupId>
160f53ee0870 Repaired pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5122
diff changeset
6 <artifactId>river-backend</artifactId>
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
7 <version>1.0-SNAPSHOT</version>
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
5830
160f53ee0870 Repaired pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5122
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>
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
26 </configuration>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
27 </plugin>
5052
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
28 <plugin>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
29 <groupId>org.apache.maven.plugins</groupId>
8772
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
30 <artifactId>maven-dependency-plugin</artifactId>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
31 <version>2.10</version>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
32 <executions>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
33 <execution>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
34 <id>analyze</id>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
35 <goals>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
36 <goal>analyze-only</goal>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
37 </goals>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
38 <configuration>
9043
fda171e16988 Do not halt on warnings: this is necessary because we use slf4j-log which is only an indirect, but necessary dependency
gernotbelger
parents: 9009
diff changeset
39 <failOnWarning>false</failOnWarning>
8772
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
40 <ignoreNonCompile>true</ignoreNonCompile>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
41 </configuration>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
42 </execution>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
43 </executions>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
44 </plugin>
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 <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
47 <artifactId>maven-jar-plugin</artifactId>
9009
6fd0f20b58aa Version number of maven jar plugin added, slf4j in pom-oracle
mschaefer
parents: 8970
diff changeset
48 <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
49 <configuration>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
50 <archive>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
51 <manifest>
5830
160f53ee0870 Repaired pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5122
diff changeset
52 <mainClass>org.dive4elements.river.importer.Importer</mainClass>
160f53ee0870 Repaired pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5122
diff changeset
53 <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
54 </manifest>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
55 </archive>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
56 </configuration>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
57 </plugin>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
58 <plugin>
8675
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
59 <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: 8502
diff changeset
60 <artifactId>maven-shade-plugin</artifactId>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
61 <version>2.3</version>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
62 <configuration>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
63 <transformers>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
64 <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: 8502
diff changeset
65 <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: 8502
diff changeset
66 </transformer>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
67 </transformers>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
68 </configuration>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
69 <executions>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
70 <execution>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
71 <phase>package</phase>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
72 <goals>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
73 <goal>shade</goal>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
74 </goals>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
75 </execution>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
76 </executions>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
77 </plugin>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
78 <plugin>
5052
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
79 <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
80 <configuration>
8675
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
81 <descriptors>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
82 <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: 8502
diff changeset
83 </descriptors>
5052
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
84 </configuration>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
85 </plugin>
8912
837c04af69fd Commented checkstyle from pom becuase it doesnt work with eclipse
gernotbelger
parents: 8859
diff changeset
86 <!--
8859
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
87 <plugin>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
88 <groupId>org.apache.maven.plugins</groupId>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
89 <artifactId>maven-checkstyle-plugin</artifactId>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
90 <version>3.0.0</version>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
91 <configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
92 <configLocation>../checkstyle.xml</configLocation>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
93 <encoding>UTF-8</encoding>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
94 </configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
95 <executions>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
96 <execution>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
97 <id>validate</id>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
98 <phase>validate</phase>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
99 <configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
100 <consoleOutput>true</consoleOutput>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
101 <failsOnError>true</failsOnError>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
102 </configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
103 <goals>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
104 <goal>check</goal>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
105 </goals>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
106 </execution>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
107 </executions>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
108 </plugin>
8912
837c04af69fd Commented checkstyle from pom becuase it doesnt work with eclipse
gernotbelger
parents: 8859
diff changeset
109 -->
167
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
110 </plugins>
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
111 </build>
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
112
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
113 <dependencies>
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
114 <dependency>
5835
821a02bbfb4e Fixed internal java dependencies
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5830
diff changeset
115 <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
116 <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
117 <version>1.0-SNAPSHOT</version>
8502
7f63ad20d4f0 Whitespace-cleanup in XML-files.
"Tom Gottfried <tom@intevation.de>"
parents: 8480
diff changeset
118 </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
119 <dependency>
8801
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
120 <!-- 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
121 <groupId>commons-collections</groupId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
122 <artifactId>commons-collections</artifactId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
123 <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
124 <scope>runtime</scope>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
125 </dependency>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
126 <dependency>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
127 <groupId>org.hibernate</groupId>
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
128 <artifactId>hibernate-core</artifactId>
8480
3cfa0af6fa2a Upgrade hibernate.
Tom Gottfried <tom@intevation.de>
parents: 8477
diff changeset
129 <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
130 <exclusions>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
131 <!-- exclude unsafe transitive dependency -->
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
132 <exclusion>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
133 <groupId>commons-collections</groupId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
134 <artifactId>commons-collections</artifactId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
135 </exclusion>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
136 </exclusions>
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
137 </dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
138 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
139 <groupId>org.hibernate.javax.persistence</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
140 <artifactId>hibernate-jpa-2.0-api</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
141 <version>1.0.1.Final</version>
168
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 <dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
144 <groupId>log4j</groupId>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
145 <artifactId>log4j</artifactId>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
146 <version>1.2.14</version>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
147 </dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
148 <dependency>
8763
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
149 <groupId>org.apache.commons</groupId>
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
150 <artifactId>commons-dbcp2</artifactId>
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
151 <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
152 </dependency>
169
7929f4144d2f Bound Apache Commons DBCP with Hibernate.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 168
diff changeset
153 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
154 <groupId>com.vividsolutions</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
155 <artifactId>jts</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
156 <version>1.11</version>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
157 </dependency>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
158 <dependency>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
159 <!-- overwrite dependency of postgis-jdbc -->
8810
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
160 <groupId>org.postgresql</groupId>
169
7929f4144d2f Bound Apache Commons DBCP with Hibernate.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 168
diff changeset
161 <artifactId>postgresql</artifactId>
8810
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
162 <version>42.0.0.jre7</version>
169
7929f4144d2f Bound Apache Commons DBCP with Hibernate.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 168
diff changeset
163 <scope>runtime</scope>
7929f4144d2f Bound Apache Commons DBCP with Hibernate.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 168
diff changeset
164 </dependency>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
165 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
166 <groupId>org.postgis</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
167 <artifactId>postgis-jdbc</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
168 <version>1.3.3</version>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
169 <scope>runtime</scope>
8810
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
170 <exclusions>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
171 <exclusion>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
172 <groupId>postgresql</groupId>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
173 <artifactId>postgresql</artifactId>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
174 </exclusion>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
175 </exclusions>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
176 </dependency>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
177 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
178 <groupId>org.hibernatespatial</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
179 <artifactId>hibernate-spatial-postgis</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
180 <version>1.1.1</version>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
181 <scope>runtime</scope>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
182 </dependency>
8970
da5dc7446652 SLF4J added and configureLogging in main
mschaefer
parents: 8912
diff changeset
183 <dependency>
da5dc7446652 SLF4J added and configureLogging in main
mschaefer
parents: 8912
diff changeset
184 <groupId>org.slf4j</groupId>
da5dc7446652 SLF4J added and configureLogging in main
mschaefer
parents: 8912
diff changeset
185 <artifactId>jul-to-slf4j</artifactId>
da5dc7446652 SLF4J added and configureLogging in main
mschaefer
parents: 8912
diff changeset
186 <version>1.6.1</version>
da5dc7446652 SLF4J added and configureLogging in main
mschaefer
parents: 8912
diff changeset
187 </dependency>
da5dc7446652 SLF4J added and configureLogging in main
mschaefer
parents: 8912
diff changeset
188 <dependency>
da5dc7446652 SLF4J added and configureLogging in main
mschaefer
parents: 8912
diff changeset
189 <groupId>org.slf4j</groupId>
da5dc7446652 SLF4J added and configureLogging in main
mschaefer
parents: 8912
diff changeset
190 <artifactId>slf4j-log4j12</artifactId>
da5dc7446652 SLF4J added and configureLogging in main
mschaefer
parents: 8912
diff changeset
191 <version>1.6.1</version>
da5dc7446652 SLF4J added and configureLogging in main
mschaefer
parents: 8912
diff changeset
192 </dependency>
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
193 </dependencies>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
194
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
195 <repositories>
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
196 <repository>
5873
1e68eca26b8a river backend: Moved SedDB hibernate model to org/dive4elements/river/seddb.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
197 <id>repository.jboss.org nexus</id>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
198 <name>JBoss Repository - Nexus</name>
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
199 <url>http://repository.jboss.org/nexus/content/groups/public/</url>
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
200 </repository>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
201 <repository>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
202 <id>OSGEO GeoTools repo</id>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
203 <url>http://download.osgeo.org/webdav/geotools</url>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
204 </repository>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
205 <repository>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
206 <id>Hibernate Spatial repo</id>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
207 <url>http://www.hibernatespatial.org/repository</url>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
208 </repository>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
209 </repositories>
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
210 </project>

http://dive4elements.wald.intevation.org