update ReferenceFactory method
[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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <!-- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" -->
5 <parent>
6 <groupId>eu.etaxonomy</groupId>
7 <artifactId>cdmlib-parent</artifactId>
8 <version>3.2.0-SNAPSHOT</version>
9 <relativePath>../pom.xml</relativePath>
10 </parent>
11
12 <modelVersion>4.0.0</modelVersion>
13 <artifactId>cdmlib-io</artifactId>
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>org.unitils</groupId>
51 <artifactId>unitils-core</artifactId>
52 <scope>test</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.unitils</groupId>
56 <artifactId>unitils-database</artifactId>
57 <exclusions>
58 <exclusion>
59 <groupId>commons-dbcp</groupId>
60 <artifactId>commons-dbcp</artifactId>
61 </exclusion>
62 </exclusions>
63 <scope>test</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.unitils</groupId>
67 <artifactId>unitils-dbmaintainer</artifactId>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.unitils</groupId>
72 <artifactId>unitils-dbunit</artifactId>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.unitils</groupId>
77 <artifactId>unitils-easymock</artifactId>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
81 <groupId>org.unitils</groupId>
82 <artifactId>unitils-mock</artifactId>
83 <scope>test</scope>
84 </dependency>
85 <dependency>
86 <groupId>org.unitils</groupId>
87 <artifactId>unitils-inject</artifactId>
88 <scope>test</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.unitils</groupId>
92 <artifactId>unitils-orm</artifactId>
93 <exclusions>
94 <exclusion>
95 <groupId>javax.persistence</groupId>
96 <artifactId>persistence-api</artifactId>
97 </exclusion>
98 </exclusions>
99 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.unitils</groupId>
103 <artifactId>unitils-spring</artifactId>
104 <scope>test</scope>
105 </dependency>
106 <dependency>
107 <groupId>org.dbunit</groupId>
108 <artifactId>dbunit</artifactId>
109 </dependency>
110 <dependency>
111 <groupId>com.carrotsearch</groupId>
112 <artifactId>junit-benchmarks</artifactId>
113 <scope>test</scope>
114 </dependency>
115 <dependency>
116 <groupId>xmlunit</groupId>
117 <artifactId>xmlunit</artifactId>
118 </dependency>
119 <dependency>
120 <groupId>org.apache.poi</groupId>
121 <artifactId>poi</artifactId>
122 </dependency>
123 <dependency>
124 <groupId>org.springframework</groupId>
125 <artifactId>org.springframework.oxm</artifactId>
126 </dependency>
127 <dependency>
128 <groupId>identificationKeyAPI</groupId>
129 <artifactId>identificationKeyAPI</artifactId>
130 </dependency>
131
132 </dependencies>
133 </project>
134