cdmlib / cdmlib-io / pom.xml @ 4672679d
History | View | Annotate | Download (2.37 KB)
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.3.0</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-persistence</artifactId> -->
|
42 |
<!-- <type>test-jar</type> -->
|
43 |
<!-- <scope>test</scope> -->
|
44 |
<!-- <version>${project.version}</version> -->
|
45 |
<!-- </dependency> -->
|
46 |
<dependency>
|
47 |
<groupId>eu.etaxonomy</groupId> |
48 |
<artifactId>cdmlib-ext</artifactId> |
49 |
</dependency>
|
50 |
<dependency>
|
51 |
<groupId>com.google.guava</groupId> |
52 |
<artifactId>guava</artifactId> |
53 |
</dependency>
|
54 |
<dependency>
|
55 |
<groupId>xmlunit</groupId> |
56 |
<artifactId>xmlunit</artifactId> |
57 |
</dependency>
|
58 |
<dependency>
|
59 |
<groupId>org.apache.poi</groupId> |
60 |
<artifactId>poi</artifactId> |
61 |
</dependency>
|
62 |
<dependency>
|
63 |
<groupId>org.springframework</groupId> |
64 |
<artifactId>spring-oxm</artifactId> |
65 |
</dependency>
|
66 |
<dependency>
|
67 |
<groupId>identificationKeyAPI</groupId> |
68 |
<artifactId>identificationKeyAPI</artifactId> |
69 |
</dependency>
|
70 |
<dependency>
|
71 |
<groupId>org.apache.jena</groupId> |
72 |
<artifactId>jena-tdb</artifactId> |
73 |
</dependency>
|
74 |
</dependencies>
|
75 |
</project>
|
76 |
|