Project

General

Profile

Download (4.15 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
  <!--
4
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
5
   -->
6
	<parent>
7
	    <groupId>eu.etaxonomy</groupId>
8
	    <artifactId>cdmlib-parent</artifactId>
9
	    <version>5.1.0-SNAPSHOT</version>
10
	    <relativePath>../pom.xml</relativePath>
11
	</parent>
12

    
13
  <modelVersion>4.0.0</modelVersion>
14
  <artifactId>cdmlib-ext</artifactId>
15
  <name>CDM External</name>
16
  <description>EDIT CDM library external services. Module for handling requests to non CDM library services like the EDIT geoservice.</description>
17

    
18
  <dependencies>
19
 	<dependency>
20
  		<groupId>eu.etaxonomy</groupId>
21
  		<artifactId>cdmlib-services</artifactId>
22
  	</dependency>
23
    <dependency>
24
        <groupId>eu.etaxonomy</groupId>
25
        <artifactId>cdmlib-test</artifactId>
26
        <scope>test</scope>
27
    </dependency>
28
<!--   	<dependency> -->
29
<!--   		<groupId>eu.etaxonomy</groupId> -->
30
<!--   		<artifactId>cdmlib-persistence</artifactId> -->
31
<!--   		<type>test-jar</type> -->
32
<!--   		<scope>test</scope> -->
33
<!--   		<version>${project.version}</version> -->
34
<!--     </dependency> -->
35
<!--     <dependency> -->
36
<!--       <groupId>org.unitils</groupId> -->
37
<!--       <artifactId>unitils-core</artifactId> -->
38
<!--       <scope>test</scope> -->
39
<!--     </dependency> -->
40
<!--     probably most unitils dependencies can be deleted from here -->
41
<!--     <dependency> -->
42
<!--       <groupId>org.unitils</groupId> -->
43
<!--       <artifactId>unitils-database</artifactId> -->
44
<!--       <exclusions> -->
45
<!--       	<exclusion> -->
46
<!--       		<groupId>commons-dbcp</groupId> -->
47
<!--       		<artifactId>commons-dbcp</artifactId> -->
48
<!--       	</exclusion> -->
49
<!--       </exclusions> -->
50
<!--       <scope>test</scope> -->
51
<!--     </dependency> -->
52
<!--     <dependency> -->
53
<!--       <groupId>org.unitils</groupId> -->
54
<!--       <artifactId>unitils-dbmaintainer</artifactId> -->
55
<!--       <scope>test</scope> -->
56
<!--     </dependency> -->
57
<!--     <dependency> -->
58
<!--       <groupId>org.unitils</groupId> -->
59
<!--       <artifactId>unitils-dbunit</artifactId> -->
60
<!--       <scope>test</scope> -->
61
<!--     </dependency> -->
62
<!--      <dependency> -->
63
<!--       <groupId>org.unitils</groupId> -->
64
<!--       <artifactId>unitils-easymock</artifactId> -->
65
<!--       <scope>test</scope> -->
66
<!--     </dependency> -->
67
<!--     <dependency> -->
68
<!--       <groupId>org.unitils</groupId> -->
69
<!--       <artifactId>unitils-mock</artifactId> -->
70
<!--       <scope>test</scope> -->
71
<!--     </dependency> -->
72
<!--     <dependency> -->
73
<!--       <groupId>org.unitils</groupId> -->
74
<!--       <artifactId>unitils-inject</artifactId> -->
75
<!--       <scope>test</scope> -->
76
<!--     </dependency> -->
77
<!--      <dependency> -->
78
<!--       <groupId>org.unitils</groupId> -->
79
<!--       <artifactId>unitils-spring</artifactId> -->
80
<!--       <scope>test</scope> -->
81
<!--     </dependency> -->
82
<!--     <dependency> -->
83
<!--       <groupId>org.dbunit</groupId> -->
84
<!--       <artifactId>dbunit</artifactId> -->
85
<!--     </dependency>  -->
86
<!--     <dependency> -->
87
<!--       <groupId>xmlunit</groupId> -->
88
<!--       <artifactId>xmlunit</artifactId> -->
89
<!--   	</dependency> -->
90

    
91
    <dependency>
92
	    <groupId>org.apache.httpcomponents</groupId>
93
	    <artifactId>httpclient</artifactId>
94
	</dependency>
95
	<dependency>
96
        <groupId>net.sf.json-lib</groupId>
97
        <artifactId>json-lib</artifactId>
98
		<classifier>jdk15</classifier>
99
    </dependency>
100
    <dependency>
101
        <groupId>com.fasterxml.jackson.core</groupId>
102
        <artifactId>jackson-databind</artifactId>
103
    </dependency>
104
	<dependency>
105
        <groupId>net.sf.ezmorph</groupId>
106
        <artifactId>ezmorph</artifactId>
107
    </dependency>
108
    <dependency>
109
        <groupId>commons-io</groupId>
110
        <artifactId>commons-io</artifactId>
111
    </dependency>
112
    <dependency>
113
        <groupId>com.taskadapter</groupId>
114
        <artifactId>redmine-java-api</artifactId>
115
    </dependency>
116
  </dependencies>
117
</project>
118

    
(3-3/3)