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>3.0.6-SNAPSHOT</version>
|
11
|
<relativePath>pom.xml</relativePath>
|
12
|
</parent>
|
13
|
|
14
|
<modelVersion>4.0.0</modelVersion>
|
15
|
<artifactId>cdmlib-pesi</artifactId>
|
16
|
<name>CDM PESI</name>
|
17
|
<description>The PESI package for EDIT's CdmLibrary</description>
|
18
|
<scm>
|
19
|
<connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-pesi/</connection>
|
20
|
<developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-pesi/</developerConnection>
|
21
|
<url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-pesi/</url>
|
22
|
</scm>
|
23
|
<build>
|
24
|
<plugins>
|
25
|
<plugin>
|
26
|
<groupId>org.apache.maven.plugins</groupId>
|
27
|
<artifactId>maven-jar-plugin</artifactId>
|
28
|
<executions>
|
29
|
<execution>
|
30
|
<goals>
|
31
|
<goal>test-jar</goal>
|
32
|
</goals>
|
33
|
</execution>
|
34
|
</executions>
|
35
|
</plugin>
|
36
|
</plugins>
|
37
|
</build>
|
38
|
<dependencies>
|
39
|
<dependency>
|
40
|
<groupId>eu.etaxonomy</groupId>
|
41
|
<artifactId>cdmlib-persistence</artifactId>
|
42
|
<type>test-jar</type>
|
43
|
<scope>test</scope>
|
44
|
<version>${parent.version}</version>
|
45
|
</dependency>
|
46
|
<dependency>
|
47
|
<groupId>eu.etaxonomy</groupId>
|
48
|
<artifactId>cdmlib-io</artifactId>
|
49
|
</dependency>
|
50
|
<dependency>
|
51
|
<groupId>org.unitils</groupId>
|
52
|
<artifactId>unitils</artifactId>
|
53
|
</dependency>
|
54
|
<dependency>
|
55
|
<groupId>org.dbunit</groupId>
|
56
|
<artifactId>dbunit</artifactId>
|
57
|
</dependency>
|
58
|
<dependency>
|
59
|
<groupId>xmlunit</groupId>
|
60
|
<artifactId>xmlunit</artifactId>
|
61
|
</dependency>
|
62
|
</dependencies>
|
63
|
</project>
|
64
|
|