28a5e8c4228c35e1b60d83a64702440a4f956462
[cdmlib.git] / cdmlib-ext / pom.xml
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.5.1-SNAPSHOT</version>
10 <relativePath>../pom.xml</relativePath>
11 </parent>
12
13 <modelVersion>4.0.0</modelVersion>
14 <artifactId>cdmlib-ext</artifactId>
15 <version>3.5.1-SNAPSHOT</version>
16 <name>CDM External</name>
17 <description>EDIT CDM library external services. Module for handling requests to non CDM library services like the EDIT geoservice.</description>
18 <scm>
19 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-extern/</connection>
20 <developerConnection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-extern/</developerConnection>
21 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-extern/</url>
22 </scm>
23
24 <dependencies>
25 <dependency>
26 <groupId>eu.etaxonomy</groupId>
27 <artifactId>cdmlib-services</artifactId>
28 </dependency>
29 <dependency>
30 <groupId>eu.etaxonomy</groupId>
31 <artifactId>cdmlib-persistence</artifactId>
32 <type>test-jar</type>
33 <scope>test</scope>
34 <version>${project.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>org.unitils</groupId>
38 <artifactId>unitils-core</artifactId>
39 <scope>test</scope>
40 </dependency>
41 <!-- probably most unitis dependencies can be deleted from here -->
42 <dependency>
43 <groupId>org.unitils</groupId>
44 <artifactId>unitils-database</artifactId>
45 <exclusions>
46 <exclusion>
47 <groupId>commons-dbcp</groupId>
48 <artifactId>commons-dbcp</artifactId>
49 </exclusion>
50 </exclusions>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.unitils</groupId>
55 <artifactId>unitils-dbmaintainer</artifactId>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.unitils</groupId>
60 <artifactId>unitils-dbunit</artifactId>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.unitils</groupId>
65 <artifactId>unitils-easymock</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.unitils</groupId>
70 <artifactId>unitils-mock</artifactId>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.unitils</groupId>
75 <artifactId>unitils-inject</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.unitils</groupId>
80 <artifactId>unitils-spring</artifactId>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.dbunit</groupId>
85 <artifactId>dbunit</artifactId>
86 </dependency>
87 <dependency>
88 <groupId>xmlunit</groupId>
89 <artifactId>xmlunit</artifactId>
90 </dependency>
91
92 <dependency>
93 <groupId>org.apache.httpcomponents</groupId>
94 <artifactId>httpclient</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>net.sf.json-lib</groupId>
98 <artifactId>json-lib</artifactId>
99 <classifier>jdk15</classifier>
100 </dependency>
101 <dependency>
102 <groupId>net.sf.ezmorph</groupId>
103 <artifactId>ezmorph</artifactId>
104 </dependency>
105
106 </dependencies>
107 </project>
108