Project

General

Profile

Download (2.62 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>5.32.0-SNAPSHOT</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.apache.logging.log4j</groupId>
21
      <artifactId>log4j-core</artifactId>
22
    </dependency>
23
    <dependency>
24
      <groupId>org.springframework</groupId>
25
      <artifactId>spring-test</artifactId>
26
    </dependency>
27
    <dependency>
28
      <groupId>org.jdom</groupId>
29
      <artifactId>jdom</artifactId>
30
    </dependency>
31
    <dependency>
32
      <groupId>org.jdom</groupId>
33
      <artifactId>jdom2</artifactId>
34
    </dependency>
35
    <dependency>
36
      <groupId>org.apache.poi</groupId>
37
      <artifactId>poi</artifactId>
38
    </dependency>
39
    <dependency>
40
      <groupId>org.apache.poi</groupId>
41
      <artifactId>poi-ooxml</artifactId>
42
    </dependency>
43
    <!-- ## see https://poi.apache.org/help/faq.html  
44
           question 3 on when to use poi-ooxml-full and when poi-ooxml-lite -->
45
    <dependency>
46
      <groupId>org.apache.poi</groupId>
47
      <artifactId>poi-ooxml-lite</artifactId>
48
    </dependency>
49

    
50
	<dependency>
51
        <groupId>org.apache.commons</groupId>
52
        <artifactId>commons-lang3</artifactId>
53
	</dependency>
54

    
55
    <!--  ImageMetadata  -->
56
    
57
    <dependency>
58
        <groupId>org.apache.commons</groupId>
59
        <artifactId>commons-imaging</artifactId>
60
    </dependency>
61
    
62
    <dependency>
63
      <groupId>org.apache.httpcomponents</groupId>
64
      <artifactId>httpclient</artifactId>
65
    </dependency>
66
   
67
    <!-- AptView -->
68
    <dependency>
69
      <groupId>org.apache.maven.doxia</groupId>
70
      <artifactId>doxia-module-apt</artifactId>
71
      <exclusions>
72
        <exclusion>
73
            <!-- conflicts with guava, seems to be an early or light version of guava -->
74
            <groupId>com.google.collections</groupId>
75
            <artifactId>google-collections</artifactId>
76
        </exclusion>
77
      </exclusions>
78
    </dependency>
79
    <dependency>
80
      <groupId>org.apache.maven.doxia</groupId>
81
      <artifactId>doxia-module-xhtml</artifactId>
82
    </dependency>
83

    
84
  </dependencies>
85
</project>
(3-3/3)