1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
3
|
<!-- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" -->
|
4
|
<parent>
|
5
|
<groupId>eu.etaxonomy</groupId>
|
6
|
<artifactId>cdmlib-parent</artifactId>
|
7
|
<version>5.17.0-SNAPSHOT</version>
|
8
|
<relativePath>../pom.xml</relativePath>
|
9
|
</parent>
|
10
|
|
11
|
<modelVersion>4.0.0</modelVersion>
|
12
|
<artifactId>cdmlib-io</artifactId>
|
13
|
<name>CDM Import/Export</name>
|
14
|
<description>The import-export package for EDIT's cdmLibrary</description>
|
15
|
|
16
|
<build>
|
17
|
<plugins>
|
18
|
<plugin>
|
19
|
<groupId>org.apache.maven.plugins</groupId>
|
20
|
<artifactId>maven-jar-plugin</artifactId>
|
21
|
<version>2.3.2</version>
|
22
|
<executions>
|
23
|
<execution>
|
24
|
<goals>
|
25
|
<goal>test-jar</goal>
|
26
|
</goals>
|
27
|
</execution>
|
28
|
</executions>
|
29
|
</plugin>
|
30
|
</plugins>
|
31
|
</build>
|
32
|
<dependencies>
|
33
|
<dependency>
|
34
|
<groupId>eu.etaxonomy</groupId>
|
35
|
<artifactId>cdmlib-test</artifactId>
|
36
|
<scope>test</scope>
|
37
|
<version>${project.version}</version>
|
38
|
</dependency>
|
39
|
<dependency>
|
40
|
<groupId>eu.etaxonomy</groupId>
|
41
|
<artifactId>cdmlib-ext</artifactId>
|
42
|
</dependency>
|
43
|
<dependency>
|
44
|
<groupId>com.google.guava</groupId>
|
45
|
<artifactId>guava</artifactId>
|
46
|
</dependency>
|
47
|
<dependency>
|
48
|
<groupId>xmlunit</groupId>
|
49
|
<artifactId>xmlunit</artifactId>
|
50
|
</dependency>
|
51
|
<dependency>
|
52
|
<groupId>org.apache.poi</groupId>
|
53
|
<artifactId>poi</artifactId>
|
54
|
</dependency>
|
55
|
<dependency>
|
56
|
<groupId>org.apache.poi</groupId>
|
57
|
<artifactId>ooxml-schemas</artifactId>
|
58
|
</dependency>
|
59
|
<dependency>
|
60
|
<groupId>org.springframework</groupId>
|
61
|
<artifactId>spring-oxm</artifactId>
|
62
|
</dependency>
|
63
|
<dependency>
|
64
|
<groupId>identificationKeyAPI</groupId>
|
65
|
<artifactId>identificationKeyAPI</artifactId>
|
66
|
</dependency>
|
67
|
<dependency>
|
68
|
<groupId>org.apache.jena</groupId>
|
69
|
<artifactId>jena-tdb</artifactId>
|
70
|
</dependency>
|
71
|
<dependency>
|
72
|
<groupId>org.docx4j</groupId>
|
73
|
<artifactId>docx4j</artifactId>
|
74
|
</dependency>
|
75
|
<dependency>
|
76
|
<groupId>javax.xml.bind</groupId>
|
77
|
<artifactId>jaxb-api</artifactId>
|
78
|
</dependency>
|
79
|
</dependencies>
|
80
|
</project>
|
81
|
|