Project

General

Profile

Download (3.5 KB) Statistics
| Branch: | Tag: | Revision:
1 5d8c2bce Andreas Kohlbecker
<?xml version="1.0" encoding="UTF-8"?>
2 62a355af jenkins
<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 4a186e0a Andreas Kohlbecker
  <!-- 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 eb0c1b16 jenkins
    <version>5.27.0-SNAPSHOT</version>
8 4a186e0a Andreas Kohlbecker
    <relativePath>../pom.xml</relativePath>
9
  </parent>
10 5d8c2bce Andreas Kohlbecker
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 397763df Andreas Kohlbecker
    <dependency>
17 4a186e0a Andreas Kohlbecker
      <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 397763df Andreas Kohlbecker
    </dependency>
34 5d8c2bce Andreas Kohlbecker
    <dependency>
35 4a186e0a Andreas Kohlbecker
      <groupId>com.fasterxml.jackson.core</groupId>
36
      <artifactId>jackson-databind</artifactId>
37 2622a38b Andreas Müller
    </dependency>
38
    <dependency>
39 4a186e0a Andreas Kohlbecker
      <groupId>net.sf.ezmorph</groupId>
40
      <artifactId>ezmorph</artifactId>
41 786696e3 Andreas Müller
    </dependency>
42 4a186e0a Andreas Kohlbecker
    <dependency>
43 fc718568 Andreas Müller
      <!-- required by GbifJsonOccurrenceParser and KmlJaxbMarshallerTest) -->
44 4a186e0a Andreas Kohlbecker
      <groupId>commons-io</groupId>
45
      <artifactId>commons-io</artifactId>
46 786696e3 Andreas Müller
    </dependency>
47 c795a3a1 Andreas Kohlbecker
    <!-- GIS/KML -->
48
	<dependency>
49
	    <groupId>de.micromata.jak</groupId>
50
	    <artifactId>JavaAPIforKml</artifactId>
51 533b841a Andreas Müller
        <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 c795a3a1 Andreas Kohlbecker
	</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 09b9fc11 Andreas Kohlbecker
	    <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 9fa20047 Andreas Müller
            <exclusion>
84 e0b57a80 Andreas Müller
                <!-- 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 9fa20047 Andreas Müller
                <groupId>javax</groupId>
86
                <artifactId>javaee-api</artifactId>
87
            </exclusion>
88 09b9fc11 Andreas Kohlbecker
	    </exclusions>
89 c795a3a1 Andreas Kohlbecker
	</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 d1bd1389 Andreas Müller
  </dependencies>
99 5d8c2bce Andreas Kohlbecker
</project>