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