Project

General

Profile

Download (2.39 KB) Statistics
| Branch: | Tag: | Revision:
1 c318ec3f Katja Luther
<?xml version="1.0" encoding="UTF-8"?>
2 f276c5fe edit-jenkins
<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 30936368 Andreas Kohlbecker
  <!-- 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 2ea48187 jenkins
    <version>5.29.0-SNAPSHOT</version>
8 30936368 Andreas Kohlbecker
    <relativePath>../pom.xml</relativePath>
9
  </parent>
10 c318ec3f Katja Luther
11 30936368 Andreas Kohlbecker
  <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 3a2a1682 Andreas Kohlbecker
16 30936368 Andreas Kohlbecker
  <build>
17
    <plugins>
18
      <plugin>
19
        <groupId>org.apache.maven.plugins</groupId>
20
        <artifactId>maven-jar-plugin</artifactId>
21 33ddfdc4 Andreas Müller
        <version>3.2.2</version>
22 30936368 Andreas Kohlbecker
        <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 8c34728e Andreas Müller
        <groupId>eu.etaxonomy</groupId>
35
        <artifactId>cdmlib-test</artifactId>
36
        <scope>test</scope>
37
    </dependency>
38 30936368 Andreas Kohlbecker
    <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 93c283c9 Andreas Müller
      <artifactId>spring-oxm</artifactId>
53 30936368 Andreas Kohlbecker
    </dependency>
54
    <dependency>
55
      <groupId>identificationKeyAPI</groupId>
56
      <artifactId>identificationKeyAPI</artifactId>
57 0afeecdf Andreas Müller
<!--       <exclusions> -->
58
<!--         <exclusion> -->
59
<!--           <groupId>xml-apis</groupId> -->
60
<!--           <artifactId>xml-apis</artifactId> -->
61
<!--         </exclusion> -->
62
<!--       </exclusions> -->
63 30936368 Andreas Kohlbecker
    </dependency>
64 26d5d7db unknown
    <dependency>
65 8c34728e Andreas Müller
 		<groupId>org.apache.jena</groupId>
66
 		<artifactId>jena-tdb</artifactId>	
67
	</dependency>
68 f4ec5c82 Patrick Plitzner
    <dependency>
69
        <groupId>org.docx4j</groupId>
70
        <artifactId>docx4j</artifactId>
71
    </dependency>
72 2c9b6fea Andreas Müller
    <dependency>
73
      <groupId>xml-resolver</groupId>
74
      <artifactId>xml-resolver</artifactId>
75
    </dependency>
76 30936368 Andreas Kohlbecker
  </dependencies>
77 c318ec3f Katja Luther
</project>