comparison artifacts/pom-oracle.xml @ 8515:01d71ff84d43

Update Oracle-POM in backend and add pom-oracle.xml with respective dependency to artifacts.
author Tom Gottfried <tom@intevation.de>
date Wed, 17 Dec 2014 18:02:27 +0100
parents
children dc02c7f96ad8
comparison
equal deleted inserted replaced
8514:97d2a83118e4 8515:01d71ff84d43
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.6</source>
25 <target>1.6</target>
26 </configuration>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-javadoc-plugin</artifactId>
31 <version>2.8.1</version>
32 <configuration>
33 <show>private</show>
34 <nohelp>true</nohelp>
35 </configuration>
36 </plugin>
37 <plugin>
38 <artifactId>maven-assembly-plugin</artifactId>
39 <configuration>
40 <descriptors>
41 <descriptor>src/assembly/assembly.xml</descriptor>
42 </descriptors>
43 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47
48 <dependencies>
49 <dependency>
50 <groupId>net.sf.ehcache</groupId>
51 <artifactId>ehcache-core</artifactId>
52 <version>2.4.2</version>
53 </dependency>
54 <dependency>
55 <groupId>junit</groupId>
56 <artifactId>junit</artifactId>
57 <version>3.8.1</version>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>trove</groupId>
62 <artifactId>trove</artifactId>
63 <version>1.1-beta-5</version>
64 </dependency>
65 <dependency>
66 <groupId>net.sf.opencsv</groupId>
67 <artifactId>opencsv</artifactId>
68 <version>2.0</version>
69 </dependency>
70 <dependency>
71 <groupId>org.dive4elements</groupId>
72 <artifactId>artifact-database</artifactId>
73 <version>1.0-SNAPSHOT</version>
74 </dependency>
75 <dependency>
76 <groupId>org.dive4elements</groupId>
77 <artifactId>artifacts-common</artifactId>
78 <version>1.0-SNAPSHOT</version>
79 </dependency>
80 <dependency>
81 <groupId>org.dive4elements.river</groupId>
82 <artifactId>river-backend</artifactId>
83 <version>1.0-SNAPSHOT-ora</version>
84 </dependency>
85 <dependency>
86 <groupId>org.jfree</groupId>
87 <artifactId>jfreechart</artifactId>
88 <version>1.0.15</version>
89 </dependency>
90 <dependency>
91 <groupId>org.apache.xmlgraphics</groupId>
92 <artifactId>batik-dom</artifactId>
93 <version>1.7</version>
94 </dependency>
95 <dependency>
96 <groupId>org.apache.xmlgraphics</groupId>
97 <artifactId>batik-svggen</artifactId>
98 <version>1.7</version>
99 </dependency>
100 <dependency>
101 <groupId>com.lowagie</groupId>
102 <artifactId>itext</artifactId>
103 <version>2.1.7</version>
104 </dependency>
105 <dependency>
106 <groupId>org.apache.commons</groupId>
107 <artifactId>commons-math</artifactId>
108 <version>2.2</version>
109 </dependency>
110 <dependency>
111 <groupId>com.h2database</groupId>
112 <artifactId>h2</artifactId>
113 <version>1.3.158</version>
114 </dependency>
115 <dependency>
116 <groupId>commons-dbcp</groupId>
117 <artifactId>commons-dbcp</artifactId>
118 <version>1.4</version>
119 </dependency>
120 <dependency>
121 <groupId>commons-io</groupId>
122 <artifactId>commons-io</artifactId>
123 <version>2.4</version>
124 </dependency>
125 <dependency>
126 <groupId>org.geotools</groupId>
127 <artifactId>gt-shapefile</artifactId>
128 <version>2.7.2</version>
129 </dependency>
130 <dependency>
131 <groupId>org.geotools</groupId>
132 <artifactId>gt-epsg-wkt</artifactId>
133 <version>2.7.2</version>
134 </dependency>
135 <dependency>
136 <groupId>org.geotools</groupId>
137 <artifactId>gt-geojson</artifactId>
138 <version>2.7.2</version>
139 </dependency>
140 <dependency>
141 <groupId>org.geotools</groupId>
142 <artifactId>gt-swing</artifactId>
143 <version>2.7.2</version>
144 </dependency>
145 <dependency>
146 <groupId>org.json</groupId>
147 <artifactId>json</artifactId>
148 <version>20090211</version>
149 </dependency>
150 <dependency>
151 <groupId>org.apache.velocity</groupId>
152 <artifactId>velocity</artifactId>
153 <version>1.7</version>
154 </dependency>
155 <dependency>
156 <groupId>net.sf.jasperreports</groupId>
157 <artifactId>jasperreports</artifactId>
158 <version>4.5.0</version>
159 </dependency>
160 <dependency>
161 <groupId>org.codehaus.groovy</groupId>
162 <artifactId>groovy-all</artifactId>
163 <version>1.6.0</version>
164 </dependency>
165 </dependencies>
166 <repositories>
167 <repository>
168 <id>jboss-repo2</id>
169 <name>JBoss repo2</name>
170 <url>http://repository.jboss.org/nexus/content/groups/public/</url>
171 </repository>
172 <repository>
173 <id>gt2.repo</id>
174 <name>GeoTools2 Repository including JTS</name>
175 <url>http://download.osgeo.org/webdav/geotools</url>
176 </repository>
177 </repositories>
178 </project>

http://dive4elements.wald.intevation.org