comparison text/pom.xml @ 896:ffbe1cf18c8e

move Texter servlet to its own maven module
author robcast
date Tue, 03 May 2011 12:18:08 +0200
parents
children 3eec743bd2ea
comparison
equal deleted inserted replaced
895:8b706be7c3e9 896:ffbe1cf18c8e
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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>digilib</artifactId>
6 <groupId>digilib</groupId>
7 <version>2.0-SNAPSHOT</version>
8 </parent>
9 <groupId>digilib</groupId>
10 <artifactId>text</artifactId>
11 <version>2.0-SNAPSHOT</version>
12 <name>digilib-text</name>
13 <dependencies>
14 <dependency>
15 <groupId>digilib</groupId>
16 <artifactId>digilib-common</artifactId>
17 <type>jar</type>
18 <scope>compile</scope>
19 </dependency>
20 </dependencies>
21 <description>The Digital Image Library - text (plain or XML) serving servlet</description>
22 <url>http://digilib.berlios.de</url>
23 <profiles>
24 <profile>
25 <id>servlet2</id>
26 <activation>
27 <activeByDefault>true</activeByDefault>
28 <property>
29 <name>servletapi</name>
30 <value>2</value>
31 </property>
32 </activation>
33 <dependencies>
34 <dependency>
35 <groupId>digilib</groupId>
36 <artifactId>digilib-servlet2</artifactId>
37 <type>jar</type>
38 <scope>provided</scope>
39 </dependency>
40 <dependency>
41 <groupId>javax.servlet</groupId>
42 <artifactId>servlet-api</artifactId>
43 <version>2.3</version>
44 <type>jar</type>
45 <scope>provided</scope>
46 </dependency>
47 </dependencies>
48 </profile>
49 <profile>
50 <id>servlet3</id>
51 <activation>
52 <property>
53 <name>servletapi</name>
54 <value>3</value>
55 </property>
56 </activation>
57 <dependencies>
58 <dependency>
59 <groupId>digilib</groupId>
60 <artifactId>digilib-servlet3</artifactId>
61 <type>jar</type>
62 <scope>provided</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.mortbay.jetty</groupId>
66 <artifactId>servlet-api</artifactId>
67 <version>3.0.20100224</version>
68 <type>jar</type>
69 <scope>provided</scope>
70 </dependency>
71 </dependencies>
72 </profile>
73 </profiles>
74 </project>