Project

General

Profile

Download (2.58 KB) Statistics
| Branch: | Tag: | Revision:
1 b4543f9f m.doering
<?xml version="1.0" encoding="UTF-8"?>
2 5d8c2bce Andreas Kohlbecker
<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 c3bec07a Andreas Müller
  <!-- 
4
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
5 b4543f9f m.doering
  -->
6
  <parent>
7
    <groupId>eu.etaxonomy</groupId>
8
    <artifactId>cdmlib-parent</artifactId>
9 af199beb jenkins
    <version>5.19.0-SNAPSHOT</version>
10 9be06fc9 n.hoffmann
	<relativePath>../pom.xml</relativePath>
11 b4543f9f m.doering
  </parent>
12 54a6a85d m.doering
  
13 b4543f9f m.doering
  <modelVersion>4.0.0</modelVersion>
14
  <artifactId>cdmlib-commons</artifactId>
15 8084ac56 m.doering
  <name>CDM Commons</name>
16 b4543f9f m.doering
  <description>EDIT CDM library - Commons</description>
17
  
18
  <dependencies>
19 f0d35b30 Andreas Müller
    <dependency>
20
      <groupId>log4j</groupId>
21
      <artifactId>log4j</artifactId>
22
    </dependency>
23 b4543f9f m.doering
    <dependency>
24
      <groupId>org.springframework</groupId>
25 2fb183d7 Andreas Müller
      <artifactId>spring-test</artifactId>
26 b4543f9f m.doering
    </dependency>
27
    <dependency>
28 5132ede4 Andreas Müller
      <groupId>org.jdom</groupId>
29 b4543f9f m.doering
      <artifactId>jdom</artifactId>
30
    </dependency>
31 44a80e96 Andreas Müller
    <dependency>
32
      <groupId>org.jdom</groupId>
33
      <artifactId>jdom2</artifactId>
34
    </dependency>
35 58f71116 n.hoffmann
    <dependency>
36
      <groupId>org.apache.poi</groupId>
37
      <artifactId>poi</artifactId>
38
    </dependency>
39 17ed092e Andreas Müller
   	<dependency>
40 cef595a2 Andreas Müller
		<!-- ## 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 17ed092e Andreas Müller
		<artifactId>poi-ooxml-schemas</artifactId>
44
	</dependency>
45
	<dependency>
46
		<groupId>org.apache.poi</groupId>
47
		<artifactId>poi-ooxml</artifactId>
48
	</dependency>
49 858ae92e Andreas Kohlbecker
	<dependency>
50 355e6e0f Andreas Müller
        <groupId>org.apache.commons</groupId>
51
        <artifactId>commons-lang3</artifactId>
52 858ae92e Andreas Kohlbecker
	</dependency>
53 5d8c2bce Andreas Kohlbecker
54 858ae92e Andreas Kohlbecker
    <!--  ImageMetadata  -->
55 5d8c2bce Andreas Kohlbecker
    
56 58f71116 n.hoffmann
    <dependency>
57 a1257e7e Andreas Müller
        <groupId>org.apache.commons</groupId>
58
        <artifactId>commons-imaging</artifactId>
59 8e2a4925 n.hoffmann
    </dependency>
60
    
61
    <dependency>
62
      <groupId>org.apache.httpcomponents</groupId>
63
      <artifactId>httpclient</artifactId>
64 5d8c2bce Andreas Kohlbecker
    </dependency>
65
   
66 c96279b2 Cherian Mathew
    <!-- AptView -->
67
    <dependency>
68
      <groupId>org.apache.maven.doxia</groupId>
69
      <artifactId>doxia-module-apt</artifactId>
70 e854950f Andreas Müller
      <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 c96279b2 Cherian Mathew
    </dependency>
78
    <dependency>
79
      <groupId>org.apache.maven.doxia</groupId>
80
      <artifactId>doxia-module-xhtml</artifactId>
81
    </dependency>
82
83 b4543f9f m.doering
  </dependencies>
84 17f913df Andreas Kohlbecker
</project>