annotate backend/pom.xml @ 8871:78cd6572778d

Introduced groups for modules. Modules marked with the same group-id, will be put together in the ui. Also using now the localization info from the server instead of localizing the modules again on the client side.
author gernotbelger
date Wed, 07 Feb 2018 12:02:58 +0100
parents 0862ea5d66ba
children 837c04af69fd aee871c60599
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>
be28bb0c7f50 Force clean dependency management in backend.
Tom Gottfried <tom@intevation.de>
parents: 8771
diff changeset
39 <failOnWarning>true</failOnWarning>
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>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
48 <configuration>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
49 <archive>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
50 <manifest>
5830
160f53ee0870 Repaired pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5122
diff changeset
51 <mainClass>org.dive4elements.river.importer.Importer</mainClass>
160f53ee0870 Repaired pom.xml
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5122
diff changeset
52 <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
53 </manifest>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
54 </archive>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
55 </configuration>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
56 </plugin>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
57 <plugin>
8675
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
58 <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
59 <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
60 <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
61 <configuration>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
62 <transformers>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
63 <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
64 <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
65 </transformer>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
66 </transformers>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
67 </configuration>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
68 <executions>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
69 <execution>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
70 <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
71 <goals>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
72 <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
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 </execution>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
75 </executions>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
76 </plugin>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
77 <plugin>
5052
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
78 <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
79 <configuration>
8675
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
80 <descriptors>
ae3df0f96e15 Mavenize importer packaging and allow packaging for specific versions and database systems.
Tom Gottfried <tom@intevation.de>
parents: 8502
diff changeset
81 <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
82 </descriptors>
5052
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
83 </configuration>
fa600417a335 Use maven jar and maven assemply plugins to create a single jar
Andre Heinecke <aheinecke@intevation.de>
parents: 3951
diff changeset
84 </plugin>
8859
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
85 <plugin>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
86 <groupId>org.apache.maven.plugins</groupId>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
87 <artifactId>maven-checkstyle-plugin</artifactId>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
88 <version>3.0.0</version>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
89 <configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
90 <configLocation>../checkstyle.xml</configLocation>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
91 <encoding>UTF-8</encoding>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
92 </configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
93 <executions>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
94 <execution>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
95 <id>validate</id>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
96 <phase>validate</phase>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
97 <configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
98 <consoleOutput>true</consoleOutput>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
99 <failsOnError>true</failsOnError>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
100 </configuration>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
101 <goals>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
102 <goal>check</goal>
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 </execution>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
105 </executions>
0862ea5d66ba Add Checkstyle configuration.
Tom Gottfried <tom@intevation.de>
parents: 8810
diff changeset
106 </plugin>
167
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
107 </plugins>
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
108 </build>
15d515fe15f5 Added POJOs to be mapped to schema.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 166
diff changeset
109
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
110 <dependencies>
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
111 <dependency>
5835
821a02bbfb4e Fixed internal java dependencies
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5830
diff changeset
112 <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
113 <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
114 <version>1.0-SNAPSHOT</version>
8502
7f63ad20d4f0 Whitespace-cleanup in XML-files.
"Tom Gottfried <tom@intevation.de>"
parents: 8480
diff changeset
115 </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
116 <dependency>
8801
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
117 <!-- 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
118 <groupId>commons-collections</groupId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
119 <artifactId>commons-collections</artifactId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
120 <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
121 <scope>runtime</scope>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
122 </dependency>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
123 <dependency>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
124 <groupId>org.hibernate</groupId>
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
125 <artifactId>hibernate-core</artifactId>
8480
3cfa0af6fa2a Upgrade hibernate.
Tom Gottfried <tom@intevation.de>
parents: 8477
diff changeset
126 <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
127 <exclusions>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
128 <!-- exclude unsafe transitive dependency -->
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
129 <exclusion>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
130 <groupId>commons-collections</groupId>
dece88059a36 (Issue1856) Exclude ACC 3.1, use 3.2.2 instead.
Tom Gottfried <tom@intevation.de>
parents: 8772
diff changeset
131 <artifactId>commons-collections</artifactId>
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 </exclusions>
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
134 </dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
135 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
136 <groupId>org.hibernate.javax.persistence</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
137 <artifactId>hibernate-jpa-2.0-api</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
138 <version>1.0.1.Final</version>
168
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
139 </dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
140 <dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
141 <groupId>log4j</groupId>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
142 <artifactId>log4j</artifactId>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
143 <version>1.2.14</version>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
144 </dependency>
86a1bd9cc50e More Hibernate/JPA stuff
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 167
diff changeset
145 <dependency>
8763
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
146 <groupId>org.apache.commons</groupId>
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
147 <artifactId>commons-dbcp2</artifactId>
8179cca1796a Upgrade to DBCP 2.1.1
Tom Gottfried <tom@intevation.de>
parents: 8675
diff changeset
148 <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
149 </dependency>
169
7929f4144d2f Bound Apache Commons DBCP with Hibernate.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 168
diff changeset
150 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
151 <groupId>com.vividsolutions</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
152 <artifactId>jts</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
153 <version>1.11</version>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
154 </dependency>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
155 <dependency>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
156 <!-- overwrite dependency of postgis-jdbc -->
8810
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
157 <groupId>org.postgresql</groupId>
169
7929f4144d2f Bound Apache Commons DBCP with Hibernate.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 168
diff changeset
158 <artifactId>postgresql</artifactId>
8810
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
159 <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
160 <scope>runtime</scope>
7929f4144d2f Bound Apache Commons DBCP with Hibernate.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 168
diff changeset
161 </dependency>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
162 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
163 <groupId>org.postgis</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
164 <artifactId>postgis-jdbc</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
165 <version>1.3.3</version>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
166 <scope>runtime</scope>
8810
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
167 <exclusions>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
168 <exclusion>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
169 <groupId>postgresql</groupId>
dbdb7c9bd51b Upgrade to new PostgreSQL JDBC-driver.
Tom Gottfried <tom@intevation.de>
parents: 8801
diff changeset
170 <artifactId>postgresql</artifactId>
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 </exclusions>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
173 </dependency>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
174 <dependency>
8771
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
175 <groupId>org.hibernatespatial</groupId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
176 <artifactId>hibernate-spatial-postgis</artifactId>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
177 <version>1.1.1</version>
2bba7f551225 Cleanup backend dependencies.
Tom Gottfried <tom@intevation.de>
parents: 8763
diff changeset
178 <scope>runtime</scope>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
179 </dependency>
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
180 </dependencies>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
181
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
182 <repositories>
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
183 <repository>
5873
1e68eca26b8a river backend: Moved SedDB hibernate model to org/dive4elements/river/seddb.
Sascha L. Teichmann <teichmann@intevation.de>
parents: 5838
diff changeset
184 <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
185 <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
186 <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
187 </repository>
1230
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
188 <repository>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
189 <id>OSGEO GeoTools repo</id>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
190 <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
191 </repository>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
192 <repository>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
193 <id>Hibernate Spatial repo</id>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
194 <url>http://www.hibernatespatial.org/repository</url>
e2deda3b77a7 Introduced support for FLYS spatial data.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 1228
diff changeset
195 </repository>
166
56eb8f1b42cf Added dependency Hibernate Core 3.6.1 Final
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 165
diff changeset
196 </repositories>
165
a69b8494fcac Created a new empty maven project
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
197 </project>

http://dive4elements.wald.intevation.org