cdmlib / cdmlib-print / pom.xml @ 29284bac
History | View | Annotate | Download (2.14 KB)
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>5.5.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 |
|
16 |
<developers>
|
17 |
<developer>
|
18 |
<!-- your SVN account id please! -->
|
19 |
<id>n.hoffmann</id> |
20 |
<name>
|
21 |
Niels Hoffmann |
22 |
</name>
|
23 |
<email>n.hoffmann [at] bgbm.org</email> |
24 |
<organization>
|
25 |
Botanic Garden Botanical Museum Berlin |
26 |
</organization>
|
27 |
<organizationUrl>http://www.bgbm.org/BioDivInf/</organizationUrl> |
28 |
<timezone>+1</timezone> |
29 |
<roles>
|
30 |
<role>Java Developer</role> |
31 |
</roles>
|
32 |
<url>http://www.bgbm.org/bgbm/staff/wiss/HoffmannN/default.htm</url> |
33 |
</developer>
|
34 |
</developers>
|
35 |
<dependencies>
|
36 |
<dependency>
|
37 |
<groupId>eu.etaxonomy</groupId> |
38 |
<artifactId>cdmlib-remote</artifactId> |
39 |
</dependency>
|
40 |
<dependency>
|
41 |
<groupId>xerces</groupId> |
42 |
<artifactId>xercesImpl</artifactId> |
43 |
</dependency>
|
44 |
<dependency>
|
45 |
<groupId>org.apache.xmlgraphics</groupId> |
46 |
<artifactId>fop</artifactId> |
47 |
</dependency>
|
48 |
<dependency>
|
49 |
<groupId>javax.servlet</groupId> |
50 |
<artifactId>javax.servlet-api</artifactId> |
51 |
<scope>provided</scope> |
52 |
</dependency>
|
53 |
<dependency>
|
54 |
<groupId>org.odftoolkit</groupId> |
55 |
<artifactId>odfdom-java</artifactId> |
56 |
</dependency>
|
57 |
<dependency>
|
58 |
<groupId>net.sf.saxon</groupId> |
59 |
<artifactId>Saxon-HE</artifactId> |
60 |
</dependency>
|
61 |
<dependency>
|
62 |
<groupId>org.apache.httpcomponents</groupId> |
63 |
<artifactId>httpmime</artifactId> |
64 |
</dependency>
|
65 |
<dependency>
|
66 |
<groupId>org.json</groupId> |
67 |
<artifactId>json</artifactId> |
68 |
</dependency>
|
69 |
</dependencies>
|
70 |
</project>
|