Mercurial > hg > digilib
annotate pdf/pom.xml @ 1170:cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
author | robcast |
---|---|
date | Thu, 28 Mar 2013 16:28:52 +0100 |
parents | d5d113dbcd24 |
children | d4990c1463e3 |
rev | line source |
---|---|
895 | 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
896 | 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 <modelVersion>4.0.0</modelVersion> | |
4 <parent> | |
5 <artifactId>digilib</artifactId> | |
6 <groupId>digilib</groupId> | |
954 | 7 <version>2.1-SNAPSHOT</version> |
896 | 8 </parent> |
9 <artifactId>digilib-pdf</artifactId> | |
10 <name>digilib-pdf</name> | |
11 <description>The Digital Image Library - PDF generation servlet</description> | |
12 <url>http://digilib.berlios.de</url> | |
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
896
diff
changeset
|
13 <repositories> |
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
896
diff
changeset
|
14 <repository> |
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
896
diff
changeset
|
15 <id>itextpdf.com</id> |
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
896
diff
changeset
|
16 <name>Maven Repository for iText</name> |
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
896
diff
changeset
|
17 <url>http://maven.itextpdf.com/</url> |
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
896
diff
changeset
|
18 </repository> |
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
896
diff
changeset
|
19 </repositories> |
896 | 20 <dependencies> |
21 <dependency> | |
22 <groupId>digilib</groupId> | |
23 <artifactId>digilib-common</artifactId> | |
24 <type>jar</type> | |
25 <scope>compile</scope> | |
26 </dependency> | |
27 <dependency> | |
28 <groupId>com.itextpdf</groupId> | |
29 <artifactId>itextpdf</artifactId> | |
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
896
diff
changeset
|
30 <version>5.0.4</version> |
896 | 31 <type>jar</type> |
32 <scope>compile</scope> | |
33 </dependency> | |
1170
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
954
diff
changeset
|
34 <dependency> |
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
954
diff
changeset
|
35 <groupId>org.jdom</groupId> |
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
954
diff
changeset
|
36 <artifactId>jdom</artifactId> |
cf8ecc67200e
renamed XMLMetaLoader into IndexMetaLoader. new IndexMetaAuthLoader in progress. moved JDOM dependency to pdf module.
robcast
parents:
954
diff
changeset
|
37 </dependency> |
896 | 38 </dependencies> |
39 <profiles> | |
40 <profile> | |
41 <id>servlet2</id> | |
42 <activation> | |
43 <activeByDefault>true</activeByDefault> | |
44 <property> | |
45 <name>servletapi</name> | |
46 <value>2</value> | |
47 </property> | |
48 </activation> | |
49 <dependencies> | |
50 <dependency> | |
51 <groupId>digilib</groupId> | |
52 <artifactId>digilib-servlet2</artifactId> | |
53 <type>jar</type> | |
54 <scope>provided</scope> | |
55 </dependency> | |
56 <dependency> | |
57 <groupId>javax.servlet</groupId> | |
58 <artifactId>servlet-api</artifactId> | |
59 <version>2.3</version> | |
60 <type>jar</type> | |
61 <scope>provided</scope> | |
62 </dependency> | |
63 </dependencies> | |
64 </profile> | |
65 <profile> | |
66 <id>servlet3</id> | |
67 <activation> | |
68 <property> | |
69 <name>servletapi</name> | |
70 <value>3</value> | |
71 </property> | |
72 </activation> | |
73 <dependencies> | |
74 <dependency> | |
75 <groupId>digilib</groupId> | |
76 <artifactId>digilib-servlet3</artifactId> | |
77 <type>jar</type> | |
78 <scope>provided</scope> | |
79 </dependency> | |
80 <dependency> | |
81 <groupId>org.mortbay.jetty</groupId> | |
82 <artifactId>servlet-api</artifactId> | |
83 <version>3.0.20100224</version> | |
84 <type>jar</type> | |
85 <scope>provided</scope> | |
86 </dependency> | |
87 </dependencies> | |
88 </profile> | |
89 </profiles> | |
894 | 90 </project> |