cdmlib / cdmlib-commons / pom.xml @ 29284bac
History | View | Annotate | Download (2.24 KB)
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>5.5.0</version> |
10 |
<relativePath>../pom.xml</relativePath> |
11 |
</parent>
|
12 |
|
13 |
<modelVersion>4.0.0</modelVersion> |
14 |
<artifactId>cdmlib-commons</artifactId> |
15 |
<name>CDM Commons</name> |
16 |
<description>EDIT CDM library - Commons</description> |
17 |
|
18 |
<dependencies>
|
19 |
<dependency>
|
20 |
<groupId>org.springframework</groupId> |
21 |
<artifactId>spring-test</artifactId> |
22 |
</dependency>
|
23 |
<dependency>
|
24 |
<groupId>org.jdom</groupId> |
25 |
<artifactId>jdom</artifactId> |
26 |
</dependency>
|
27 |
<dependency>
|
28 |
<groupId>org.jdom</groupId> |
29 |
<artifactId>jdom2</artifactId> |
30 |
</dependency>
|
31 |
<dependency>
|
32 |
<groupId>org.apache.poi</groupId> |
33 |
<artifactId>poi</artifactId> |
34 |
</dependency>
|
35 |
<dependency>
|
36 |
<groupId>org.apache.poi</groupId> |
37 |
<artifactId>poi-ooxml-schemas</artifactId> |
38 |
</dependency>
|
39 |
<dependency>
|
40 |
<groupId>org.apache.poi</groupId> |
41 |
<artifactId>poi-ooxml</artifactId> |
42 |
</dependency>
|
43 |
<dependency>
|
44 |
<groupId>org.apache.commons</groupId> |
45 |
<artifactId>commons-lang3</artifactId> |
46 |
</dependency>
|
47 |
|
48 |
|
49 |
<!-- ImageMetadata -->
|
50 |
|
51 |
<!-- deprecated -->
|
52 |
<!--
|
53 |
<dependency>
|
54 |
<groupId>org.devlib.schmidt</groupId>
|
55 |
<artifactId>imageinfo</artifactId>
|
56 |
<version>1.7</version>
|
57 |
</dependency>
|
58 |
-->
|
59 |
|
60 |
<dependency>
|
61 |
<groupId>org.apache.sanselan</groupId> |
62 |
<artifactId>sanselan</artifactId> |
63 |
</dependency>
|
64 |
|
65 |
<dependency>
|
66 |
<groupId>org.apache.httpcomponents</groupId> |
67 |
<artifactId>httpclient</artifactId> |
68 |
</dependency>
|
69 |
|
70 |
<!-- AptView -->
|
71 |
<dependency>
|
72 |
<groupId>org.apache.maven.doxia</groupId> |
73 |
<artifactId>doxia-module-apt</artifactId> |
74 |
</dependency>
|
75 |
<dependency>
|
76 |
<groupId>org.apache.maven.doxia</groupId> |
77 |
<artifactId>doxia-module-xhtml</artifactId> |
78 |
</dependency>
|
79 |
|
80 |
</dependencies>
|
81 |
</project>
|