annotate backend/pom.xml @ 9763:ce7c67445cbb 3.2.x

No more hacks for getting description in case of official lines In case the name contained one and only one number, that number had been returned as description because in that case, the name matched WQ.NUMBERS_PATTERN.
author Tom Gottfried <tom@intevation.de>
date Fri, 11 Nov 2022 18:12:26 +0100
parents 432934cda171
children 71188efb16b0
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>
9669
aee871c60599 Ensure the build does not fail due to non-ASCII characters
Tom Gottfried <tom@intevation.de>
parents: 8859
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>
5830
160f53ee0870 Repaired pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5122
diff changeset
53 <mainClass>org.dive4elements.river.importer.Importer</mainClass>
160f53ee0870 Repaired pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5122
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: 8502
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: 8502
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: 8502
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: 8502
diff changeset
63 <configuration>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
64 <transformers>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
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: 8502
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: 8502
diff changeset
67 </transformer>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
68 </transformers>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
69 </configuration>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
70 <executions>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
71 <execution>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
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: 8502
diff changeset
73 <goals>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
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: 8502
diff changeset
75 </goals>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
76 </execution>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
77 </executions>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
78 </plugin>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
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: 8502
diff changeset
82 <descriptors>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
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: 8502
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>
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>
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
9750
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
112 <dependencyManagement>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
113 <dependencies>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
114 <dependency>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
115 <groupId>org.apache.logging.log4j</groupId>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
116 <artifactId>log4j-bom</artifactId>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
117 <version>2.17.1</version>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
118 <scope>import</scope>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
119 <type>pom</type>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
120 </dependency>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
121 </dependencies>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
122 </dependencyManagement>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
123
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
124 <dependencies>
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
125 <dependency>
5835
821a02bbfb4e Fixed internal java dependencies
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5830
diff changeset
126 <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
127 <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
128 <version>1.0-SNAPSHOT</version>
8502
7f63ad20d4f0 Whitespace-cleanup in XML-files.
"Tom Gottfried <tom@intevation.de>"
parents: 8480
diff changeset
129 </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
130 <dependency>
8801
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
131 <!-- 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
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 <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
135 <scope>runtime</scope>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
136 </dependency>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
137 <dependency>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
138 <groupId>org.hibernate</groupId>
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
139 <artifactId>hibernate-core</artifactId>
8480
3cfa0af6fa2a Upgrade hibernate.
Tom Gottfried <tom@intevation.de>
parents: 8477
diff changeset
140 <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
141 <exclusions>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
142 <!-- exclude unsafe transitive dependency -->
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
143 <exclusion>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
144 <groupId>commons-collections</groupId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
145 <artifactId>commons-collections</artifactId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
146 </exclusion>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
147 </exclusions>
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
148 </dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
149 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
150 <groupId>org.hibernate.javax.persistence</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
151 <artifactId>hibernate-jpa-2.0-api</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
152 <version>1.0.1.Final</version>
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
153 </dependency>
9750
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
154
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
155 <!-- Logging -->
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
156 <dependency>
9726
0a5239a1e46e Upgrade to Log4j 2
Tom Gottfried <tom@intevation.de>
parents: 9724
diff changeset
157 <groupId>org.apache.logging.log4j</groupId>
0a5239a1e46e Upgrade to Log4j 2
Tom Gottfried <tom@intevation.de>
parents: 9724
diff changeset
158 <artifactId>log4j-api</artifactId>
0a5239a1e46e Upgrade to Log4j 2
Tom Gottfried <tom@intevation.de>
parents: 9724
diff changeset
159 </dependency>
0a5239a1e46e Upgrade to Log4j 2
Tom Gottfried <tom@intevation.de>
parents: 9724
diff changeset
160 <dependency>
0a5239a1e46e Upgrade to Log4j 2
Tom Gottfried <tom@intevation.de>
parents: 9724
diff changeset
161 <groupId>org.apache.logging.log4j</groupId>
0a5239a1e46e Upgrade to Log4j 2
Tom Gottfried <tom@intevation.de>
parents: 9724
diff changeset
162 <artifactId>log4j-core</artifactId>
0a5239a1e46e Upgrade to Log4j 2
Tom Gottfried <tom@intevation.de>
parents: 9724
diff changeset
163 <scope>runtime</scope>
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
164 </dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
165 <dependency>
9750
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
166 <groupId>org.apache.logging.log4j</groupId>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
167 <artifactId>log4j-slf4j-impl</artifactId>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
168 <scope>runtime</scope>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
169 </dependency>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
170 <dependency>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
171 <groupId>org.apache.logging.log4j</groupId>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
172 <artifactId>log4j-jul</artifactId>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
173 <scope>runtime</scope>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
174 </dependency>
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
175
432934cda171 Fix logging setup
Tom Gottfried <tom@intevation.de>
parents: 9744
diff changeset
176 <dependency>
8763
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
177 <groupId>org.apache.commons</groupId>
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
178 <artifactId>commons-dbcp2</artifactId>
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
179 <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
180 </dependency>
169
7929f4144d2f Bound Apache Commons DBCP with Hibernate.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 168
diff changeset
181 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
182 <groupId>com.vividsolutions</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
183 <artifactId>jts</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
184 <version>1.11</version>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
185 </dependency>
9744
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
186
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
187 <!-- database drivers -->
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
188 <dependency>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
189 <!-- overwrite dependency of postgis-jdbc -->
8810
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
190 <groupId>org.postgresql</groupId>
169
7929f4144d2f Bound Apache Commons DBCP with Hibernate.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 168
diff changeset
191 <artifactId>postgresql</artifactId>
8810
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
192 <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
193 <scope>runtime</scope>
7929f4144d2f Bound Apache Commons DBCP with Hibernate.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 168
diff changeset
194 </dependency>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
195 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
196 <groupId>org.postgis</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
197 <artifactId>postgis-jdbc</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
198 <version>1.3.3</version>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
199 <scope>runtime</scope>
8810
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
200 <exclusions>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
201 <exclusion>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
202 <groupId>postgresql</groupId>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
203 <artifactId>postgresql</artifactId>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
204 </exclusion>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
205 </exclusions>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
206 </dependency>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
207 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
208 <groupId>org.hibernatespatial</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
209 <artifactId>hibernate-spatial-postgis</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
210 <version>1.1.1</version>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
211 <scope>runtime</scope>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
212 </dependency>
9744
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
213 <dependency>
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
214 <groupId>com.oracle.database.jdbc</groupId>
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
215 <artifactId>ojdbc8</artifactId>
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
216 <version>[19,20)</version>
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
217 <scope>runtime</scope>
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
218 </dependency>
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
219 <dependency>
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
220 <groupId>org.hibernatespatial</groupId>
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
221 <artifactId>hibernate-spatial-oracle</artifactId>
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
222 <version>1.1.1</version>
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
223 <scope>runtime</scope>
b1b48fa7bd80 Include both database drivers in one pom.xml
Tom Gottfried <tom@intevation.de>
parents: 9726
diff changeset
224 </dependency>
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
225 </dependencies>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
226
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
227 <repositories>
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
228 <repository>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
229 <id>Hibernate Spatial repo</id>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
230 <url>http://www.hibernatespatial.org/repository</url>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
231 </repository>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
232 </repositories>
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
233 </project>

http://dive4elements.wald.intevation.org