1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
3
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
4
|
<!--
|
5
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
|
6
|
-->
|
7
|
<parent>
|
8
|
<groupId>eu.etaxonomy</groupId>
|
9
|
<artifactId>cdmlib-parent</artifactId>
|
10
|
<version>2.5</version>
|
11
|
<relativePath>pom.xml</relativePath>
|
12
|
</parent>
|
13
|
|
14
|
<modelVersion>4.0.0</modelVersion>
|
15
|
<artifactId>cdmlib-commons</artifactId>
|
16
|
<name>CDM Commons</name>
|
17
|
<description>EDIT CDM library - Commons</description>
|
18
|
<scm>
|
19
|
<connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-commons/</connection>
|
20
|
<developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-commons/</developerConnection>
|
21
|
<url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-commons/</url>
|
22
|
</scm>
|
23
|
|
24
|
<dependencies>
|
25
|
<dependency>
|
26
|
<groupId>org.springframework</groupId>
|
27
|
<artifactId>org.springframework.test</artifactId>
|
28
|
</dependency>
|
29
|
<dependency>
|
30
|
<groupId>jdom</groupId>
|
31
|
<artifactId>jdom</artifactId>
|
32
|
</dependency>
|
33
|
|
34
|
<dependency>
|
35
|
<groupId>org.apache.poi</groupId>
|
36
|
<artifactId>poi</artifactId>
|
37
|
</dependency>
|
38
|
|
39
|
<dependency>
|
40
|
<groupId>commons-lang</groupId>
|
41
|
<artifactId>commons-lang</artifactId>
|
42
|
</dependency>
|
43
|
|
44
|
|
45
|
<!-- ImageMetadata -->
|
46
|
|
47
|
<!-- deprecated -->
|
48
|
<!--
|
49
|
<dependency>
|
50
|
<groupId>org.devlib.schmidt</groupId>
|
51
|
<artifactId>imageinfo</artifactId>
|
52
|
<version>1.7</version>
|
53
|
</dependency>
|
54
|
-->
|
55
|
|
56
|
<dependency>
|
57
|
<groupId>org.apache.sanselan</groupId>
|
58
|
<artifactId>sanselan</artifactId>
|
59
|
</dependency>
|
60
|
|
61
|
<dependency>
|
62
|
<groupId>org.apache.httpcomponents</groupId>
|
63
|
<artifactId>httpclient</artifactId>
|
64
|
</dependency>
|
65
|
|
66
|
</dependencies>
|
67
|
</project>
|