(no commit message)
[cdmlib.git] / cdmlib-services / pom.xml
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 <artifactId>cdmParent</artifactId>
9 <groupId>eu.etaxonomy</groupId>
10 <version>0.5.0</version>
11 <relativePath>../cdmParent/pom.xml</relativePath>
12 </parent>
13
14 <modelVersion>4.0.0</modelVersion>
15 <artifactId>cdmlib-services</artifactId>
16 <name>EDIT CDM Local API</name>
17 <version>0.5.0</version>
18 <description>EDIT CDM library - local API</description>
19 <scm>
20 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlibrary/</connection>
21 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlibrary/</developerConnection>
22 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlibrary/</url>
23 </scm>
24 <build>
25 <plugins>
26 <plugin>
27 <artifactId>maven-surefire-plugin</artifactId>
28 <configuration>
29 <includes>
30 <include>**/*Test.java</include>
31 </includes>
32 <systemProperties>
33 <property>
34 <name>hibernate.connection.driver_class</name>
35 <value>${hibernate.connection.driver_class}</value>
36 </property>
37 <property>
38 <name>hibernate.connection.url</name>
39 <value>${hibernate.connection.url}</value>
40 </property>
41 <property>
42 <name>hibernate.connection.username</name>
43 <value>${hibernate.connection.username}</value>
44 </property>
45 <property>
46 <name>hibernate.connection.password</name>
47 <value>${hibernate.connection.password}</value>
48 </property>
49 </systemProperties>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54 <dependencies>
55 <dependency>
56 <groupId>eu.etaxonomy</groupId>
57 <artifactId>cdmlib-persistence</artifactId>
58 <version>0.5.0</version>
59 </dependency>
60
61 <dependency>
62 <groupId>org.springframework</groupId>
63 <artifactId>spring-test</artifactId>
64 <version>${spring.version}</version>
65 </dependency>
66 <dependency>
67 <groupId>xerces</groupId>
68 <artifactId>xercesImpl</artifactId>
69 <version>2.7.1</version>
70 </dependency>
71 <dependency>
72 <groupId>jaxen</groupId>
73 <artifactId>jaxen</artifactId>
74 <version>1.1</version>
75 </dependency>
76 <!-- may be used later, don't delete -->
77 <!-- <dependency>-->
78 <!-- <groupId>org.dbunit</groupId>-->
79 <!-- <artifactId>dbunit</artifactId>-->
80 <!-- <version>2.2</version>-->
81 <!-- </dependency>-->
82 <dependency>
83 <groupId>org.eclipse</groupId>
84 <artifactId>osgi</artifactId>
85 <version>3.2.1-R32x_v20060919</version>
86 </dependency>
87
88 </dependencies>
89 </project>
90