Project

General

Profile

Download (2.7 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.3</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
  <build>
23
    <plugins>
24
      <plugin>
25
        <groupId>org.apache.maven.plugins</groupId>
26
        <artifactId>maven-surefire-plugin</artifactId>
27
        <configuration>
28
          <argLine>-Xms256m -Xmx512m</argLine>
29
        </configuration>
30
      </plugin>
31
   </plugins>
32
  </build>
33
  <dependencies>
34
  	 <dependency>
35
  		<groupId>eu.etaxonomy</groupId>
36
  		<artifactId>cdmlib-persistence</artifactId>
37
  	</dependency>
38
  	<dependency>
39
  		<groupId>eu.etaxonomy</groupId>
40
  		<artifactId>cdmlib-persistence</artifactId>
41
  		<type>test-jar</type>
42
  		<scope>test</scope>
43
  		<version>${parent.version}</version>
44
  	</dependency>
45
    <dependency>
46
        <groupId>org.unitils</groupId>
47
        <artifactId>unitils</artifactId>
48
    </dependency>
49
    <dependency>
50
      <groupId>org.dbunit</groupId>
51
      <artifactId>dbunit</artifactId>
52
    </dependency>
53
    <dependency>
54
      <groupId>xmlunit</groupId>
55
      <artifactId>xmlunit</artifactId>
56
    </dependency>
57
  	<dependency>
58
  		<groupId>org.springframework</groupId>
59
  		<artifactId>org.springframework.test</artifactId>
60
  	</dependency>
61
  	<dependency>
62
  		<groupId>xerces</groupId>
63
  		<artifactId>xercesImpl</artifactId>
64
  	</dependency>
65
  	<dependency>
66
  		<groupId>jaxen</groupId>
67
  		<artifactId>jaxen</artifactId>
68
  	</dependency>
69
  	<dependency>
70
  		<groupId>org.eclipse</groupId>
71
  		<artifactId>osgi</artifactId>
72
  	</dependency>
73
  	<dependency>
74
    	<groupId>org.springframework.security</groupId>
75
    	<artifactId>spring-security-core</artifactId>
76
    </dependency>
77
    <dependency>
78
      <groupId>com.ibm.lsid</groupId>
79
      <artifactId>lsid-server</artifactId>
80
  	</dependency>
81
  	<dependency>
82
  		<groupId>commons-lang</groupId>
83
  		<artifactId>commons-lang</artifactId>
84
  	</dependency>
85
  </dependencies>
86
</project>
87

    
(3-3/3)