Project

General

Profile

Download (3.39 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>3.2.4-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
  <scm>
18
    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-extern/</connection>
19
    <developerConnection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-extern/</developerConnection>
20
    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-extern/</url>
21
  </scm>
22

    
23
  <dependencies>
24
 	<dependency>
25
  		<groupId>eu.etaxonomy</groupId>
26
  		<artifactId>cdmlib-services</artifactId>
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 unitis 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>net.sf.ezmorph</groupId>
102
        <artifactId>ezmorph</artifactId>
103
    </dependency>
104

    
105
  </dependencies>
106
</project>
107

    
(3-3/3)