Project

General

Profile

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

    
(3-3/3)