Project

General

Profile

Download (4.29 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>3.8.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
  <scm>
16
    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-io/</connection>
17
    <developerConnection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-io/</developerConnection>
18
    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-io/</url>
19
  </scm>
20
  <build>
21
    <plugins>
22
      <plugin>
23
        <groupId>org.apache.maven.plugins</groupId>
24
        <artifactId>maven-jar-plugin</artifactId>
25
        <version>2.3.2</version>
26
        <executions>
27
          <execution>
28
            <goals>
29
              <goal>test-jar</goal>
30
            </goals>
31
          </execution>
32
        </executions>
33
      </plugin>
34
    </plugins>
35
  </build>
36
  <dependencies>
37
    <dependency>
38
      <groupId>eu.etaxonomy</groupId>
39
      <artifactId>cdmlib-persistence</artifactId>
40
      <type>test-jar</type>
41
      <scope>test</scope>
42
      <version>${project.version}</version>
43
    </dependency>
44
    <dependency>
45
      <groupId>eu.etaxonomy</groupId>
46
      <artifactId>cdmlib-ext</artifactId>
47
    </dependency>
48
    <dependency>
49
        <groupId>com.google.guava</groupId>
50
        <artifactId>guava</artifactId>
51
    </dependency>
52
    <dependency>
53
      <groupId>org.unitils</groupId>
54
      <artifactId>unitils-core</artifactId>
55
      <scope>test</scope>
56
    </dependency>
57
    <dependency>
58
      <groupId>org.unitils</groupId>
59
      <artifactId>unitils-database</artifactId>
60
      <exclusions>
61
        <exclusion>
62
          <groupId>commons-dbcp</groupId>
63
          <artifactId>commons-dbcp</artifactId>
64
        </exclusion>
65
      </exclusions>
66
      <scope>test</scope>
67
    </dependency>
68
    <dependency>
69
      <groupId>org.unitils</groupId>
70
      <artifactId>unitils-dbmaintainer</artifactId>
71
      <scope>test</scope>
72
    </dependency>
73
    <dependency>
74
      <groupId>org.unitils</groupId>
75
      <artifactId>unitils-dbunit</artifactId>
76
      <scope>test</scope>
77
    </dependency>
78
    <dependency>
79
      <groupId>org.unitils</groupId>
80
      <artifactId>unitils-easymock</artifactId>
81
      <scope>test</scope>
82
    </dependency>
83
    <dependency>
84
      <groupId>org.unitils</groupId>
85
      <artifactId>unitils-mock</artifactId>
86
      <scope>test</scope>
87
    </dependency>
88
    <dependency>
89
      <groupId>org.unitils</groupId>
90
      <artifactId>unitils-inject</artifactId>
91
      <scope>test</scope>
92
    </dependency>
93
    <dependency>
94
      <groupId>org.unitils</groupId>
95
      <artifactId>unitils-orm</artifactId>
96
      <exclusions>
97
        <exclusion>
98
          <groupId>javax.persistence</groupId>
99
          <artifactId>persistence-api</artifactId>
100
        </exclusion>
101
      </exclusions>
102
      <scope>test</scope>
103
    </dependency>
104
    <dependency>
105
      <groupId>org.unitils</groupId>
106
      <artifactId>unitils-spring</artifactId>
107
      <scope>test</scope>
108
    </dependency>
109
    <dependency>
110
      <groupId>org.dbunit</groupId>
111
      <artifactId>dbunit</artifactId>
112
    </dependency>
113
    <dependency>
114
      <groupId>com.carrotsearch</groupId>
115
      <artifactId>junit-benchmarks</artifactId>
116
      <scope>test</scope>
117
    </dependency>
118
    <dependency>
119
      <groupId>xmlunit</groupId>
120
      <artifactId>xmlunit</artifactId>
121
    </dependency>
122
    <dependency>
123
      <groupId>org.apache.poi</groupId>
124
      <artifactId>poi</artifactId>
125
    </dependency>
126
    <dependency>
127
      <groupId>org.springframework</groupId>
128
      <artifactId>org.springframework.oxm</artifactId>
129
    </dependency>
130
    <dependency>
131
      <groupId>identificationKeyAPI</groupId>
132
      <artifactId>identificationKeyAPI</artifactId>
133
    </dependency>
134
		<dependency>
135
 			<groupId>org.apache.jena</groupId>
136
 			<artifactId>jena-tdb</artifactId>
137
 			
138
		</dependency>
139
  </dependencies>
140
</project>
141

    
(3-3/3)