Project

General

Profile

Download (3.63 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 required as json-lib exists on maven central as json-lib-2.4-jdk15.jar and xxx-jdk13.jar, see 9887 -->
33
      <classifier>jdk15</classifier>
34
    </dependency>
35
    <dependency>
36
      <groupId>com.fasterxml.jackson.core</groupId>
37
      <artifactId>jackson-databind</artifactId>
38
    </dependency>
39
    <dependency>
40
      <groupId>net.sf.ezmorph</groupId>
41
      <artifactId>ezmorph</artifactId>
42
    </dependency>
43
    <dependency>
44
      <!-- required by GbifJsonOccurrenceParser and KmlJaxbMarshallerTest) -->
45
      <groupId>commons-io</groupId>
46
      <artifactId>commons-io</artifactId>
47
    </dependency>
48
    <!-- GIS/KML -->
49
	<dependency>
50
	    <groupId>de.micromata.jak</groupId>
51
	    <artifactId>JavaAPIforKml</artifactId>
52
        <exclusions>
53
          <!-- need to exclude jaxb-impl since it depends on an old version  -->
54
          <exclusion>
55
            <groupId>com.sun.xml.bind</groupId>
56
            <artifactId>jaxb-impl</artifactId>
57
          </exclusion>
58
          <exclusion>
59
            <groupId>com.sun.xml.bind</groupId>
60
            <artifactId>jaxb-xjc</artifactId>
61
          </exclusion>
62
        </exclusions>
63
	</dependency>
64
	<dependency>
65
	    <groupId>org.geotools</groupId>
66
	    <artifactId>gt-opengis</artifactId>
67
	</dependency>
68
	<dependency>
69
	    <groupId>org.geotools</groupId>
70
	    <artifactId>gt-referencing</artifactId>
71
	    <exclusions>
72
	    	<exclusion>
73
	    		<groupId>org.eclipse.emf</groupId>
74
	    		<artifactId>org.eclipse.emf.common</artifactId>
75
	    	</exclusion>
76
	    	<exclusion>
77
	    		<groupId>org.eclipse.emf</groupId>
78
	    		<artifactId>org.eclipse.emf.ecore</artifactId>
79
	    	</exclusion>
80
	    	<exclusion>
81
	    		<groupId>org.eclipse.emf</groupId>
82
	    		<artifactId>org.eclipse.emf.ecore.xmi</artifactId>
83
	    	</exclusion>
84
            <exclusion>
85
                <!-- 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 -->
86
                <groupId>javax</groupId>
87
                <artifactId>javaee-api</artifactId>
88
            </exclusion>
89
	    </exclusions>
90
	</dependency>
91
	<dependency>
92
	    <groupId>org.geotools</groupId>
93
	    <artifactId>gt-epsg-wkt</artifactId>
94
	</dependency>
95
	<dependency>
96
	    <groupId>org.geotools</groupId>
97
	    <artifactId>gt-main</artifactId>
98
	</dependency>
99
  </dependencies>
100
</project>
101

    
(3-3/3)