Project

General

Profile

Download (3.5 KB) Statistics
| Branch: | Tag: | Revision:
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.29.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
      <!-- required by GbifJsonOccurrenceParser and KmlJaxbMarshallerTest) -->
44
      <groupId>commons-io</groupId>
45
      <artifactId>commons-io</artifactId>
46
    </dependency>
47
    <!-- GIS/KML -->
48
	<dependency>
49
	    <groupId>de.micromata.jak</groupId>
50
	    <artifactId>JavaAPIforKml</artifactId>
51
        <exclusions>
52
          <!-- need to exclude jaxb-impl since it depends on an old version  -->
53
          <exclusion>
54
            <groupId>com.sun.xml.bind</groupId>
55
            <artifactId>jaxb-impl</artifactId>
56
          </exclusion>
57
          <exclusion>
58
            <groupId>com.sun.xml.bind</groupId>
59
            <artifactId>jaxb-xjc</artifactId>
60
          </exclusion>
61
        </exclusions>
62
	</dependency>
63
	<dependency>
64
	    <groupId>org.geotools</groupId>
65
	    <artifactId>gt-opengis</artifactId>
66
	</dependency>
67
	<dependency>
68
	    <groupId>org.geotools</groupId>
69
	    <artifactId>gt-referencing</artifactId>
70
	    <exclusions>
71
	    	<exclusion>
72
	    		<groupId>org.eclipse.emf</groupId>
73
	    		<artifactId>org.eclipse.emf.common</artifactId>
74
	    	</exclusion>
75
	    	<exclusion>
76
	    		<groupId>org.eclipse.emf</groupId>
77
	    		<artifactId>org.eclipse.emf.ecore</artifactId>
78
	    	</exclusion>
79
	    	<exclusion>
80
	    		<groupId>org.eclipse.emf</groupId>
81
	    		<artifactId>org.eclipse.emf.ecore.xmi</artifactId>
82
	    	</exclusion>
83
            <exclusion>
84
                <!-- check if exclusion is ok, comes from jgridshift-core dependency, if remove exclusion make sure v8.0 is used, as otherwise version problems occurr in class javax.validation.Bootstrapconfiguration -->
85
                <groupId>javax</groupId>
86
                <artifactId>javaee-api</artifactId>
87
            </exclusion>
88
	    </exclusions>
89
	</dependency>
90
	<dependency>
91
	    <groupId>org.geotools</groupId>
92
	    <artifactId>gt-epsg-wkt</artifactId>
93
	</dependency>
94
	<dependency>
95
	    <groupId>org.geotools</groupId>
96
	    <artifactId>gt-main</artifactId>
97
	</dependency>
98
  </dependencies>
99
</project>
100

    
(3-3/3)