1
|
<?xml version="1.0"?>
|
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
|
<parent>
|
4
|
<artifactId>cdmlib-parent</artifactId>
|
5
|
<groupId>eu.etaxonomy</groupId>
|
6
|
<version>4.12.0</version>
|
7
|
<relativePath>../pom.xml</relativePath>
|
8
|
</parent>
|
9
|
<modelVersion>4.0.0</modelVersion>
|
10
|
<groupId>eu.etaxonomy</groupId>
|
11
|
<artifactId>cdmlib-print</artifactId>
|
12
|
<packaging>jar</packaging>
|
13
|
<name>CDM Print Publisher</name>
|
14
|
<description>EDIT CDM Print Publishing Framework</description>
|
15
|
<scm>
|
16
|
<connection>scm:git:https://dev.e-taxonomy.eu/git/cdmlib-print.git
|
17
|
</connection>
|
18
|
<developerConnection>scm:git:ssh://git@dev.e-taxonomy.eu/var/git/cdmlib-print.git
|
19
|
</developerConnection>
|
20
|
<url>https://dev.e-taxonomy.eu/gitweb/cdmlib.git/tree/HEAD:/cdmlib-print</url>
|
21
|
</scm>
|
22
|
<developers>
|
23
|
<developer>
|
24
|
<!-- your SVN account id please! -->
|
25
|
<id>n.hoffmann</id>
|
26
|
<name>
|
27
|
Niels Hoffmann
|
28
|
</name>
|
29
|
<email>n.hoffmann [at] bgbm.org</email>
|
30
|
<organization>
|
31
|
Botanic Garden Botanical Museum Berlin
|
32
|
</organization>
|
33
|
<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl>
|
34
|
<timezone>+1</timezone>
|
35
|
<roles>
|
36
|
<role>Java Developer</role>
|
37
|
</roles>
|
38
|
<url>http://www.bgbm.org/bgbm/staff/wiss/HoffmannN/default.htm</url>
|
39
|
</developer>
|
40
|
</developers>
|
41
|
<dependencies>
|
42
|
<dependency>
|
43
|
<groupId>eu.etaxonomy</groupId>
|
44
|
<artifactId>cdmlib-remote</artifactId>
|
45
|
</dependency>
|
46
|
<dependency>
|
47
|
<groupId>xerces</groupId>
|
48
|
<artifactId>xercesImpl</artifactId>
|
49
|
</dependency>
|
50
|
<dependency>
|
51
|
<groupId>org.apache.xmlgraphics</groupId>
|
52
|
<artifactId>fop</artifactId>
|
53
|
</dependency>
|
54
|
<dependency>
|
55
|
<groupId>javax.servlet</groupId>
|
56
|
<artifactId>javax.servlet-api</artifactId>
|
57
|
<scope>provided</scope>
|
58
|
</dependency>
|
59
|
<dependency>
|
60
|
<groupId>org.odftoolkit</groupId>
|
61
|
<artifactId>odfdom-java</artifactId>
|
62
|
</dependency>
|
63
|
<dependency>
|
64
|
<groupId>net.sf.saxon</groupId>
|
65
|
<artifactId>Saxon-HE</artifactId>
|
66
|
</dependency>
|
67
|
<dependency>
|
68
|
<groupId>org.apache.httpcomponents</groupId>
|
69
|
<artifactId>httpmime</artifactId>
|
70
|
</dependency>
|
71
|
<dependency>
|
72
|
<groupId>org.json</groupId>
|
73
|
<artifactId>json</artifactId>
|
74
|
</dependency>
|
75
|
</dependencies>
|
76
|
</project>
|