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

    
(3-3/3)