comparison artifacts/pom-oracle.xml @ 9778:b57b236c4f4e 3.2.x

Backed out changeset b1b48fa7bd80 It turns out that, while this works for PostgreSQL/PostGIS, it does not with Oracle. Hibernatespatial tries to map spatial types to PostGIS hibernate types in both cases.
author Tom Gottfried <tom@intevation.de>
date Mon, 06 Feb 2023 16:57:03 +0100
parents
children
comparison
equal deleted inserted replaced
9777:f98e5c7775d2 9778:b57b236c4f4e
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <groupId>org.dive4elements.river</groupId>
6 <artifactId>river-artifacts</artifactId>
7 <version>1.0-SNAPSHOT</version>
8 <packaging>jar</packaging>
9
10 <name>river-artifacts</name>
11 <url>http://maven.apache.org</url>
12
13 <properties>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 </properties>
16
17 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-compiler-plugin</artifactId>
22 <version>2.0.2</version>
23 <configuration>
24 <source>1.7</source>
25 <target>1.7</target>
26 <encoding>UTF-8</encoding>
27 </configuration>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-javadoc-plugin</artifactId>
32 <version>2.8.1</version>
33 <configuration>
34 <show>private</show>
35 <nohelp>true</nohelp>
36 </configuration>
37 </plugin>
38 <plugin>
39 <artifactId>maven-assembly-plugin</artifactId>
40 <configuration>
41 <descriptors>
42 <descriptor>src/assembly/assembly.xml</descriptor>
43 </descriptors>
44 </configuration>
45 </plugin>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-checkstyle-plugin</artifactId>
49 <version>3.0.0</version>
50 <configuration>
51 <configLocation>../checkstyle.xml</configLocation>
52 <encoding>UTF-8</encoding>
53 </configuration>
54 <executions>
55 <execution>
56 <id>validate</id>
57 <phase>validate</phase>
58 <configuration>
59 <consoleOutput>true</consoleOutput>
60 <failsOnError>true</failsOnError>
61 </configuration>
62 <goals>
63 <goal>check</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68 </plugins>
69 </build>
70
71 <dependencies>
72 <dependency>
73 <groupId>net.sf.ehcache</groupId>
74 <artifactId>ehcache-core</artifactId>
75 <version>2.4.2</version>
76 </dependency>
77 <dependency>
78 <groupId>junit</groupId>
79 <artifactId>junit</artifactId>
80 <version>4.13</version>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>trove</groupId>
85 <artifactId>trove</artifactId>
86 <version>1.1-beta-5</version>
87 </dependency>
88 <dependency>
89 <groupId>net.sf.opencsv</groupId>
90 <artifactId>opencsv</artifactId>
91 <version>2.0</version>
92 </dependency>
93 <dependency>
94 <groupId>org.dive4elements</groupId>
95 <artifactId>artifact-database</artifactId>
96 <version>1.0-SNAPSHOT</version>
97 </dependency>
98 <dependency>
99 <groupId>org.dive4elements</groupId>
100 <artifactId>artifacts-common</artifactId>
101 <version>1.0-SNAPSHOT</version>
102 </dependency>
103 <dependency>
104 <groupId>org.dive4elements.river</groupId>
105 <artifactId>river-backend</artifactId>
106 <version>1.0-SNAPSHOT-ora</version>
107 </dependency>
108 <dependency>
109 <groupId>org.jfree</groupId>
110 <artifactId>jfreechart</artifactId>
111 <version>1.0.15</version>
112 </dependency>
113 <dependency>
114 <groupId>org.apache.xmlgraphics</groupId>
115 <artifactId>batik-dom</artifactId>
116 <version>1.7</version>
117 </dependency>
118 <dependency>
119 <groupId>org.apache.xmlgraphics</groupId>
120 <artifactId>batik-svggen</artifactId>
121 <version>1.7</version>
122 </dependency>
123 <dependency>
124 <groupId>com.lowagie</groupId>
125 <artifactId>itext</artifactId>
126 <version>2.1.7</version>
127 </dependency>
128 <dependency>
129 <groupId>org.apache.commons</groupId>
130 <artifactId>commons-math</artifactId>
131 <version>2.2</version>
132 </dependency>
133 <dependency>
134 <groupId>com.h2database</groupId>
135 <artifactId>h2</artifactId>
136 <version>1.3.158</version>
137 </dependency>
138 <dependency>
139 <groupId>commons-io</groupId>
140 <artifactId>commons-io</artifactId>
141 <version>2.4</version>
142 </dependency>
143 <dependency>
144 <groupId>org.geotools</groupId>
145 <artifactId>gt-shapefile</artifactId>
146 <version>2.7.2</version>
147 </dependency>
148 <dependency>
149 <groupId>org.geotools</groupId>
150 <artifactId>gt-epsg-wkt</artifactId>
151 <version>2.7.2</version>
152 </dependency>
153 <dependency>
154 <groupId>org.geotools</groupId>
155 <artifactId>gt-geojson</artifactId>
156 <version>2.7.2</version>
157 </dependency>
158 <dependency>
159 <groupId>org.geotools</groupId>
160 <artifactId>gt-swing</artifactId>
161 <version>2.7.2</version>
162 </dependency>
163 <dependency>
164 <groupId>org.hibernatespatial</groupId>
165 <artifactId>hibernate-spatial</artifactId>
166 <version>1.1.1</version>
167 </dependency>
168 <dependency>
169 <groupId>org.json</groupId>
170 <artifactId>json</artifactId>
171 <version>20090211</version>
172 </dependency>
173 <dependency>
174 <groupId>org.apache.velocity</groupId>
175 <artifactId>velocity</artifactId>
176 <version>1.7</version>
177 </dependency>
178 <dependency>
179 <groupId>net.sf.jasperreports</groupId>
180 <artifactId>jasperreports</artifactId>
181 <version>4.5.0</version>
182 <exclusions>
183 <exclusion>
184 <groupId>jfree</groupId>
185 <artifactId>jfreechart</artifactId>
186 </exclusion>
187 </exclusions>
188 </dependency>
189 <dependency>
190 <groupId>org.codehaus.groovy</groupId>
191 <artifactId>groovy-all</artifactId>
192 <version>1.6.0</version>
193 </dependency>
194 </dependencies>
195 <repositories>
196 <repository>
197 <id>gt2.repo</id>
198 <name>GeoTools2 Repository including JTS</name>
199 <url>https://repo.osgeo.org/repository/release</url>
200 </repository>
201 <repository>
202 <id>Hibernate Spatial repo</id>
203 <url>http://www.hibernatespatial.org/repository</url>
204 </repository>
205 </repositories>
206 </project>

http://dive4elements.wald.intevation.org