Project

General

Profile

Download (2.59 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" 
3
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4
  <!-- 
5
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
6
   -->
7
	<parent>
8
		<groupId>eu.etaxonomy</groupId>
9
		<artifactId>cdmlib-parent</artifactId>
10
		<version>2.1</version>
11
	</parent>
12

    
13
  <modelVersion>4.0.0</modelVersion>
14
  <artifactId>cdmlib-services</artifactId>
15
  <name>CDM Services</name>
16
  <description>EDIT CDM library services. The local API and basis for webservices too.</description>
17
  <scm>
18
    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</connection>
19
    <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</developerConnection>
20
    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-service/</url>
21
  </scm>
22
  <dependencies>
23
  	 <dependency>
24
  		<groupId>eu.etaxonomy</groupId>
25
  		<artifactId>cdmlib-persistence</artifactId>
26
  	</dependency>
27
  	<dependency>
28
  		<groupId>eu.etaxonomy</groupId>
29
  		<artifactId>cdmlib-persistence</artifactId>
30
  		<type>test-jar</type>
31
  		<scope>test</scope>
32
  		<version>${parent.version}</version>
33
  	</dependency>
34
    <dependency>
35
        <groupId>org.unitils</groupId>
36
        <artifactId>unitils</artifactId>
37
    </dependency>
38
    <dependency>
39
      <groupId>org.dbunit</groupId>
40
      <artifactId>dbunit</artifactId>
41
    </dependency>
42
    <dependency>
43
      <groupId>xmlunit</groupId>
44
      <artifactId>xmlunit</artifactId>
45
    </dependency>
46
  	<dependency>
47
  		<groupId>org.springframework</groupId>
48
  		<artifactId>spring-test</artifactId>
49
  	</dependency>
50
  	<dependency>
51
  		<groupId>xerces</groupId>
52
  		<artifactId>xercesImpl</artifactId>
53
  	</dependency>
54
  	<dependency>
55
  		<groupId>jaxen</groupId>
56
  		<artifactId>jaxen</artifactId>
57
  	</dependency>
58
  	<dependency>
59
  		<groupId>org.eclipse</groupId>
60
  		<artifactId>osgi</artifactId>
61
  	</dependency>
62
  	<dependency>
63
    	<groupId>org.springframework.security</groupId>
64
    	<artifactId>spring-security-core</artifactId>
65
    </dependency>
66
    <dependency>
67
      <groupId>com.ibm.lsid</groupId>
68
      <artifactId>lsid-server</artifactId>
69
    </dependency>
70
    <dependency><!-- Required for TestingAuthenticationProvider etc until 2.5.0 [SEC-1010] -->
71
  		<groupId>org.springframework.security</groupId>
72
    	<artifactId>spring-security-core</artifactId>
73
    	<version>2.0.4</version>
74
  		<type>test-jar</type>
75
  		<scope>test</scope>
76
  	</dependency>
77
  </dependencies>
78
</project>
79

    
(3-3/3)