Project

General

Profile

Download (2.39 KB) Statistics
| Branch: | Tag: | Revision:
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.29.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>3.2.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
    </dependency>
38
    <dependency>
39
      <groupId>eu.etaxonomy</groupId>
40
      <artifactId>cdmlib-ext</artifactId>
41
    </dependency>
42
    <dependency>
43
        <groupId>com.google.guava</groupId>
44
        <artifactId>guava</artifactId>
45
    </dependency>
46
    <dependency>
47
      <groupId>xmlunit</groupId>
48
      <artifactId>xmlunit</artifactId>
49
    </dependency>
50
    <dependency>
51
      <groupId>org.springframework</groupId>
52
      <artifactId>spring-oxm</artifactId>
53
    </dependency>
54
    <dependency>
55
      <groupId>identificationKeyAPI</groupId>
56
      <artifactId>identificationKeyAPI</artifactId>
57
<!--       <exclusions> -->
58
<!--         <exclusion> -->
59
<!--           <groupId>xml-apis</groupId> -->
60
<!--           <artifactId>xml-apis</artifactId> -->
61
<!--         </exclusion> -->
62
<!--       </exclusions> -->
63
    </dependency>
64
    <dependency>
65
 		<groupId>org.apache.jena</groupId>
66
 		<artifactId>jena-tdb</artifactId>	
67
	</dependency>
68
    <dependency>
69
        <groupId>org.docx4j</groupId>
70
        <artifactId>docx4j</artifactId>
71
    </dependency>
72
    <dependency>
73
      <groupId>xml-resolver</groupId>
74
      <artifactId>xml-resolver</artifactId>
75
    </dependency>
76
  </dependencies>
77
</project>
78

    
(3-3/3)