Rework Fauna Europaea taxa import
[cdmlib.git] / cdmlib-io / 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 <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-io</artifactId>
15 <name>CDM Import/Export</name>
16 <description>The import-export package for EDIT's cdmLibrary</description>
17 <scm>
18 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-io/</connection>
19 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-io/</developerConnection>
20 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-io/</url>
21 </scm>
22 <build>
23 <plugins>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-jar-plugin</artifactId>
27 <executions>
28 <execution>
29 <goals>
30 <goal>test-jar</goal>
31 </goals>
32 </execution>
33 </executions>
34 </plugin>
35 </plugins>
36 </build>
37 <dependencies>
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>eu.etaxonomy</groupId>
47 <artifactId>cdmlib-services</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.unitils</groupId>
51 <artifactId>unitils</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.dbunit</groupId>
55 <artifactId>dbunit</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>xmlunit</groupId>
59 <artifactId>xmlunit</artifactId>
60 </dependency>
61 <dependency><!-- Required for TestingAuthenticationProvider etc until 2.5.0 [SEC-1010] -->
62 <groupId>org.springframework.security</groupId>
63 <artifactId>spring-security-core</artifactId>
64 <version>2.0.4</version>
65 <type>test-jar</type>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.apache.poi</groupId>
70 <artifactId>poi</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>com.yourkit</groupId>
74 <artifactId>yjp-controller-api-redist</artifactId>
75 <version>8.0.1</version>
76 </dependency>
77 </dependencies>
78 </project>
79
80