Mercurial > hg > digilib
comparison pdf/pom.xml @ 895:8b706be7c3e9
fixed pdf module
author | robcast |
---|---|
date | Tue, 26 Apr 2011 21:02:31 +0200 |
parents | 53dd7e189155 |
children | ffbe1cf18c8e |
comparison
equal
deleted
inserted
replaced
894:53dd7e189155 | 895:8b706be7c3e9 |
---|---|
1 <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/xsd/maven-4.0.0.xsd"> | 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
2 <modelVersion>4.0.0</modelVersion> | 3 <modelVersion>4.0.0</modelVersion> |
3 <parent> | 4 <parent> |
4 <artifactId>digilib</artifactId> | 5 <artifactId>digilib</artifactId> |
5 <groupId>digilib</groupId> | 6 <groupId>digilib</groupId> |
6 <version>2.0-SNAPSHOT</version> | 7 <version>2.0-SNAPSHOT</version> |
7 </parent> | 8 </parent> |
8 <groupId>digilib</groupId> | 9 <groupId>digilib</groupId> |
9 <artifactId>digilib-pdf</artifactId> | 10 <artifactId>digilib-pdf</artifactId> |
10 <version>2.0-SNAPSHOT</version> | 11 <version>2.0-SNAPSHOT</version> |
11 <name>digilib-pdf</name> | 12 <name>digilib-pdf</name> |
13 <description>The Digital Image Library - PDF generation servlet</description> | |
14 <url>http://digilib.berlios.de</url> | |
15 <dependencies> | |
16 <dependency> | |
17 <groupId>digilib</groupId> | |
18 <artifactId>digilib-common</artifactId> | |
19 <type>jar</type> | |
20 <scope>compile</scope> | |
21 </dependency> | |
22 <dependency> | |
23 <groupId>com.itextpdf</groupId> | |
24 <artifactId>itextpdf</artifactId> | |
25 <type>jar</type> | |
26 <scope>compile</scope> | |
27 </dependency> | |
28 <dependency> | |
29 <groupId>javax.servlet</groupId> | |
30 <artifactId>servlet-api</artifactId> | |
31 <version>2.3</version> | |
32 <type>jar</type> | |
33 <scope>provided</scope> | |
34 </dependency> | |
35 </dependencies> | |
36 <profiles> | |
37 <profile> | |
38 <id>servlet2</id> | |
39 <activation> | |
40 <activeByDefault>true</activeByDefault> | |
41 <property> | |
42 <name>servletapi</name> | |
43 <value>2</value> | |
44 </property> | |
45 </activation> | |
46 <dependencies> | |
47 <dependency> | |
48 <groupId>digilib</groupId> | |
49 <artifactId>digilib-servlet2</artifactId> | |
50 <type>jar</type> | |
51 <scope>provided</scope> | |
52 </dependency> | |
53 </dependencies> | |
54 </profile> | |
55 <profile> | |
56 <id>servlet3</id> | |
57 <activation> | |
58 <property> | |
59 <name>servletapi</name> | |
60 <value>3</value> | |
61 </property> | |
62 </activation> | |
63 <dependencies> | |
64 <dependency> | |
65 <groupId>digilib</groupId> | |
66 <artifactId>digilib-servlet3</artifactId> | |
67 <type>jar</type> | |
68 <scope>provided</scope> | |
69 </dependency> | |
70 </dependencies> | |
71 </profile> | |
72 </profiles> | |
12 </project> | 73 </project> |