comparison gnv-artifacts/pom.xml @ 875:5e9efdda6894

merged gnv-artifacts/1.0
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:13:56 +0200
parents 89aca25642d6
children c961cd9a13f7
comparison
equal deleted inserted replaced
722:bb3ffe7d719e 875:5e9efdda6894
1 <?xml version="1.0"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>de.intevation.bsh.artifacts</groupId>
5 <artifactId>gnv-artifacts</artifactId>
6 <packaging>jar</packaging>
7 <version>1.0-SNAPSHOT</version>
8 <name>gnv-artifacts</name>
9 <url>http://maven.apache.org</url>
10 <properties>
11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12 </properties>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-eclipse-plugin</artifactId>
18 <version>2.5.1</version>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-compiler-plugin</artifactId>
23 <version>2.0.2</version>
24 <configuration>
25 <source>1.5</source>
26 <target>1.5</target>
27 </configuration>
28 </plugin>
29 </plugins>
30 </build>
31 <dependencies>
32 <dependency>
33 <groupId>de.intevation.bsh.artifact-database</groupId>
34 <artifactId>artifact-database</artifactId>
35 <version>1.0-SNAPSHOT</version>
36 </dependency>
37 <dependency>
38 <groupId>de.intevation.bsh.geo-backend</groupId>
39 <artifactId>geo-backend</artifactId>
40 <version>1.0-SNAPSHOT</version>
41 </dependency>
42 <dependency>
43 <groupId>junit</groupId>
44 <artifactId>junit</artifactId>
45 <version>3.8.1</version>
46 <scope>test</scope>
47 </dependency>
48 <dependency>
49 <groupId>com.esri.sde</groupId>
50 <artifactId>jsde_sdk</artifactId>
51 <version>9.3</version>
52 <scope>test</scope>
53 </dependency>
54 <dependency>
55 <groupId>com.esri.sde</groupId>
56 <artifactId>jpe_sdk</artifactId>
57 <version>9.3</version>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>com.esri.sde</groupId>
62 <artifactId>jpe_sdkres</artifactId>
63 <version>9.3</version>
64 <scope>test</scope>
65 </dependency>
66 <dependency>
67 <groupId>com.ibm</groupId>
68 <artifactId>icu4j</artifactId>
69 <version>3.2</version>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>log4j</groupId>
74 <artifactId>log4j</artifactId>
75 <version>1.2.14</version>
76 </dependency>
77 <dependency>
78 <groupId>jfree</groupId>
79 <artifactId>jfreechart</artifactId>
80 <version>1.0.13</version>
81 </dependency>
82 <dependency>
83 <groupId>org.apache.xmlgraphics</groupId>
84 <artifactId>batik-dom</artifactId>
85 <version>1.7</version>
86 </dependency>
87 <dependency>
88 <groupId>org.apache.xmlgraphics</groupId>
89 <artifactId>batik-svggen</artifactId>
90 <version>1.7</version>
91 </dependency>
92 <dependency>
93 <groupId>org.apache.velocity</groupId>
94 <artifactId>velocity</artifactId>
95 <version>1.6.1</version>
96 </dependency>
97 <dependency>
98 <groupId>com.lowagie</groupId>
99 <artifactId>itext</artifactId>
100 <version>2.1.7</version>
101 </dependency>
102 <dependency>
103 <groupId>net.sf.opencsv</groupId>
104 <artifactId>opencsv</artifactId>
105 <version>2.0</version>
106 </dependency>
107 <dependency>
108 <groupId>org.apache.commons</groupId>
109 <artifactId>commons-math</artifactId>
110 <version>2.0</version>
111 </dependency>
112 <dependency>
113 <groupId>net.sf.ehcache</groupId>
114 <artifactId>ehcache</artifactId>
115 <version>1.6.2</version>
116 </dependency>
117 <dependency>
118 <groupId>commons-validator</groupId>
119 <artifactId>commons-validator</artifactId>
120 <version>1.3.1</version>
121 </dependency>
122 <dependency>
123 <groupId>oro</groupId>
124 <artifactId>oro</artifactId>
125 <version>2.0.8</version>
126 </dependency>
127 <dependency>
128 <groupId>org.geotools</groupId>
129 <artifactId>gt-shapefile</artifactId>
130 <version>2.5.8</version>
131 </dependency>
132 <dependency>
133 <groupId>org.geotools</groupId>
134 <artifactId>gt-epsg-wkt</artifactId>
135 <version>2.5.8</version>
136 </dependency>
137 <dependency>
138 <groupId>com.vividsolutions</groupId>
139 <artifactId>jts</artifactId>
140 <version>1.9</version>
141 </dependency>
142 <dependency>
143 <groupId>trove</groupId>
144 <artifactId>trove</artifactId>
145 <version>2.1.1</version>
146 </dependency>
147 </dependencies>
148 <repositories>
149 <repository>
150 <id>gt2.repo</id>
151 <name>GeoTools2 Repository including JTS</name>
152 <url>http://download.osgeo.org/webdav/geotools</url>
153 </repository>
154 <repository>
155 <id>repository.jboss.org</id>
156 <name>JBoss Repository</name>
157 <url>http://repository.jboss.com/maven2</url>
158 </repository>
159 </repositories>
160 </project>

http://dive4elements.wald.intevation.org