ref #9152 add separator to computed cache key
[cdmlib.git] / cdmlib-ext / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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 <!-- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" -->
4 <parent>
5 <groupId>eu.etaxonomy</groupId>
6 <artifactId>cdmlib-parent</artifactId>
7 <version>5.17.0-SNAPSHOT</version>
8 <relativePath>../pom.xml</relativePath>
9 </parent>
10
11 <modelVersion>4.0.0</modelVersion>
12 <artifactId>cdmlib-ext</artifactId>
13 <name>CDM External</name>
14 <description>EDIT CDM library external services. Module for handling requests to non CDM library services like the EDIT geoservice.</description>
15 <dependencies>
16 <dependency>
17 <groupId>eu.etaxonomy</groupId>
18 <artifactId>cdmlib-services</artifactId>
19 </dependency>
20 <dependency>
21 <groupId>eu.etaxonomy</groupId>
22 <artifactId>cdmlib-test</artifactId>
23 <scope>test</scope>
24 </dependency>
25 <dependency>
26 <groupId>org.apache.httpcomponents</groupId>
27 <artifactId>httpclient</artifactId>
28 </dependency>
29 <dependency>
30 <groupId>net.sf.json-lib</groupId>
31 <artifactId>json-lib</artifactId>
32 <classifier>jdk15</classifier>
33 </dependency>
34 <dependency>
35 <groupId>com.fasterxml.jackson.core</groupId>
36 <artifactId>jackson-databind</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>net.sf.ezmorph</groupId>
40 <artifactId>ezmorph</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>commons-io</groupId>
44 <artifactId>commons-io</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>com.taskadapter</groupId>
48 <artifactId>redmine-java-api</artifactId>
49 </dependency>
50 <!-- GIS/KML -->
51 <dependency>
52 <groupId>de.micromata.jak</groupId>
53 <artifactId>JavaAPIforKml</artifactId>
54 <exclusions>
55 <!-- need to exclude jaxb-impl since it depends on an old version -->
56 <exclusion>
57 <groupId>com.sun.xml.bind</groupId>
58 <artifactId>jaxb-impl</artifactId>
59 </exclusion>
60 <exclusion>
61 <groupId>com.sun.xml.bind</groupId>
62 <artifactId>jaxb-xjc</artifactId>
63 </exclusion>
64 </exclusions>
65 </dependency>
66 <dependency>
67 <groupId>org.geotools</groupId>
68 <artifactId>gt-opengis</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>org.geotools</groupId>
72 <artifactId>gt-referencing</artifactId>
73 <exclusions>
74 <exclusion>
75 <groupId>org.eclipse.emf</groupId>
76 <artifactId>org.eclipse.emf.common</artifactId>
77 </exclusion>
78 <exclusion>
79 <groupId>org.eclipse.emf</groupId>
80 <artifactId>org.eclipse.emf.ecore</artifactId>
81 </exclusion>
82 <exclusion>
83 <groupId>org.eclipse.emf</groupId>
84 <artifactId>org.eclipse.emf.ecore.xmi</artifactId>
85 </exclusion>
86 </exclusions>
87 </dependency>
88 <dependency>
89 <groupId>org.geotools</groupId>
90 <artifactId>gt-epsg-wkt</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>org.geotools</groupId>
94 <artifactId>gt-main</artifactId>
95 </dependency>
96 </dependencies>
97 </project>
98