Project

General

Profile

Download (4.67 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.1.4-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-services</artifactId>
49
    </dependency>
50
    <dependency>
51
      <groupId>eu.etaxonomy</groupId>
52
      <artifactId>cdmlib-ext</artifactId>
53
    </dependency>
54
    <dependency>
55
        <groupId>org.unitils</groupId>
56
        <artifactId>unitils-core</artifactId>
57
        <scope>test</scope>
58
    </dependency>
59
    <dependency>
60
      <groupId>org.unitils</groupId>
61
      <artifactId>unitils-database</artifactId>
62
      <scope>test</scope>
63
    </dependency>
64
    <dependency>
65
      <groupId>org.unitils</groupId>
66
      <artifactId>unitils-dbmaintainer</artifactId>
67
      <scope>test</scope>
68
    </dependency>
69
    <dependency>
70
      <groupId>org.unitils</groupId>
71
      <artifactId>unitils-dbunit</artifactId>
72
      <scope>test</scope>
73
    </dependency>
74
     <dependency>
75
      <groupId>org.unitils</groupId>
76
      <artifactId>unitils-easymock</artifactId>
77
      <scope>test</scope>
78
    </dependency>
79
    <dependency>
80
      <groupId>org.unitils</groupId>
81
      <artifactId>unitils-mock</artifactId>
82
      <scope>test</scope>
83
    </dependency>
84
    <dependency>
85
      <groupId>org.unitils</groupId>
86
      <artifactId>unitils-inject</artifactId>
87
      <scope>test</scope>
88
    </dependency>
89
     <dependency>
90
      <groupId>org.unitils</groupId>
91
      <artifactId>unitils-orm</artifactId>
92
      <scope>test</scope>
93
    </dependency>
94
     <dependency>
95
      <groupId>org.unitils</groupId>
96
      <artifactId>unitils-spring</artifactId>
97
      <scope>test</scope>
98
    </dependency>
99
    <dependency>
100
      <groupId>org.dbunit</groupId>
101
      <artifactId>dbunit</artifactId>
102
    </dependency>
103
    <dependency>
104
      <groupId>com.carrotsearch</groupId>
105
      <artifactId>junit-benchmarks</artifactId>
106
      <scope>test</scope>
107
    </dependency>
108
    <dependency>
109
      <groupId>xmlunit</groupId>
110
      <artifactId>xmlunit</artifactId>
111
    </dependency>
112
    <dependency>
113
    <groupId>org.apache.poi</groupId>
114
    <artifactId>poi</artifactId>
115
  </dependency>
116
  <dependency>
117
      <groupId>org.springframework</groupId>
118
      <artifactId>org.springframework.oxm</artifactId>
119
    </dependency>
120
  <dependency>
121
    <groupId>com.yourkit</groupId>
122
    <artifactId>yjp-controller-api-redist</artifactId>
123
    <!--  version>10.0.3</version> -->
124
    <version>9.0.8</version>
125
  </dependency>
126
   <dependency>
127
       <groupId>org.springframework.ws</groupId>
128
       <artifactId>spring-xml</artifactId>
129
       <version>2.1.2.RELEASE</version>
130
       <exclusions>
131
         <exclusion>
132
           <groupId>org.springframework</groupId>
133
           <artifactId>spring-core</artifactId>
134
         </exclusion>
135
         <exclusion>
136
           <groupId>org.springframework</groupId>
137
           <artifactId>spring-context</artifactId>
138
         </exclusion>
139
         <exclusion>
140
           <groupId>org.springframework</groupId>
141
           <artifactId>spring-beans</artifactId>
142
         </exclusion>
143
       </exclusions>
144
     </dependency>
145
     <dependency>
146
          <groupId>identificationKeyAPI</groupId>
147
          <artifactId>identificationKeyAPI</artifactId>
148
      </dependency>
149
  </dependencies>
150
</project>
151

    
(3-3/3)