Project

General

Profile

Download (2.58 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.19.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>log4j</groupId>
21
      <artifactId>log4j</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
		<!-- ## see https://poi.apache.org/help/faq.html  
41
           question 3 on when to use ooxml-schemas and when poi-ooxml-schemas-->
42
        <groupId>org.apache.poi</groupId>
43
		<artifactId>poi-ooxml-schemas</artifactId>
44
	</dependency>
45
	<dependency>
46
		<groupId>org.apache.poi</groupId>
47
		<artifactId>poi-ooxml</artifactId>
48
	</dependency>
49
	<dependency>
50
        <groupId>org.apache.commons</groupId>
51
        <artifactId>commons-lang3</artifactId>
52
	</dependency>
53

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

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