Mercurial > dive4elements > gnv-client
comparison geo-backend/pom.xml @ 145:92faade399e4 0.1
merged geo-backend/0.1
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:42 +0200 |
parents | 122fdc9da5f0 |
children | 031ef9649cd1 |
comparison
equal
deleted
inserted
replaced
127:f6f0e4ce4a35 | 145:92faade399e4 |
---|---|
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</groupId> | |
5 <artifactId>geo-backend</artifactId> | |
6 <packaging>jar</packaging> | |
7 <version>1.0-SNAPSHOT</version> | |
8 <name>geo-backend</name> | |
9 <url>http://maven.apache.org</url> | |
10 <build> | |
11 <plugins> | |
12 <plugin> | |
13 <groupId>org.apache.maven.plugins</groupId> | |
14 <artifactId>maven-eclipse-plugin</artifactId> | |
15 <version>2.5.1</version> | |
16 </plugin> | |
17 <plugin> | |
18 <groupId>org.apache.maven.plugins</groupId> | |
19 <artifactId>maven-compiler-plugin</artifactId> | |
20 <version>2.0.2</version> | |
21 <configuration> | |
22 <source>1.5</source> | |
23 <target>1.5</target> | |
24 </configuration> | |
25 </plugin> | |
26 </plugins> | |
27 </build> | |
28 <dependencies> | |
29 <dependency> | |
30 <groupId>junit</groupId> | |
31 <artifactId>junit</artifactId> | |
32 <version>3.8.1</version> | |
33 <scope>test</scope> | |
34 </dependency> | |
35 <dependency> | |
36 <groupId>com.esri.sde</groupId> | |
37 <artifactId>jsde_sdk</artifactId> | |
38 <version>9.2.5</version> | |
39 <scope>compile</scope> | |
40 </dependency> | |
41 <dependency> | |
42 <groupId>com.esri.sde</groupId> | |
43 <artifactId>jpe_sdk</artifactId> | |
44 <version>9.2.5</version> | |
45 <scope>compile</scope> | |
46 </dependency> | |
47 <dependency> | |
48 <groupId>com.ibm</groupId> | |
49 <artifactId>icu4j</artifactId> | |
50 <version>3.2</version> | |
51 <scope>compile</scope> | |
52 </dependency> | |
53 <dependency> | |
54 <groupId>log4j</groupId> | |
55 <artifactId>log4j</artifactId> | |
56 <version>[1.2,)</version> | |
57 </dependency> | |
58 <dependency> | |
59 <groupId>commons-pool</groupId> | |
60 <artifactId>commons-pool</artifactId> | |
61 <version>1.5.2</version> | |
62 </dependency> | |
63 </dependencies> | |
64 </project> |