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