Project

General

Profile

Download (4.25 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
  <!--
4
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
5
   -->
6
  <parent>
7
    <groupId>eu.etaxonomy</groupId>
8
    <artifactId>cdmlib-parent</artifactId>
9
    <version>3.2.0-SNAPSHOT</version>
10
  <relativePath>../pom.xml</relativePath>
11
  </parent>
12

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

    
(3-3/3)