905
|
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>
|
964
|
7 <version>2.1-SNAPSHOT</version>
|
905
|
8 </parent>
|
910
|
9 <artifactId>digilib-text</artifactId>
|
905
|
10 <name>digilib-text</name>
|
|
11 <dependencies>
|
|
12 <dependency>
|
|
13 <groupId>digilib</groupId>
|
|
14 <artifactId>digilib-common</artifactId>
|
|
15 <type>jar</type>
|
|
16 <scope>compile</scope>
|
|
17 </dependency>
|
|
18 </dependencies>
|
|
19 <description>The Digital Image Library - text (plain or XML) serving servlet</description>
|
|
20 <url>http://digilib.berlios.de</url>
|
|
21 <profiles>
|
|
22 <profile>
|
|
23 <id>servlet2</id>
|
|
24 <activation>
|
|
25 <activeByDefault>true</activeByDefault>
|
|
26 <property>
|
|
27 <name>servletapi</name>
|
|
28 <value>2</value>
|
|
29 </property>
|
|
30 </activation>
|
|
31 <dependencies>
|
|
32 <dependency>
|
|
33 <groupId>digilib</groupId>
|
|
34 <artifactId>digilib-servlet2</artifactId>
|
|
35 <type>jar</type>
|
|
36 <scope>provided</scope>
|
|
37 </dependency>
|
|
38 <dependency>
|
|
39 <groupId>javax.servlet</groupId>
|
|
40 <artifactId>servlet-api</artifactId>
|
|
41 <version>2.3</version>
|
|
42 <type>jar</type>
|
|
43 <scope>provided</scope>
|
|
44 </dependency>
|
|
45 </dependencies>
|
|
46 </profile>
|
|
47 <profile>
|
|
48 <id>servlet3</id>
|
|
49 <activation>
|
|
50 <property>
|
|
51 <name>servletapi</name>
|
|
52 <value>3</value>
|
|
53 </property>
|
|
54 </activation>
|
|
55 <dependencies>
|
|
56 <dependency>
|
|
57 <groupId>digilib</groupId>
|
|
58 <artifactId>digilib-servlet3</artifactId>
|
|
59 <type>jar</type>
|
|
60 <scope>provided</scope>
|
|
61 </dependency>
|
|
62 <dependency>
|
|
63 <groupId>org.mortbay.jetty</groupId>
|
|
64 <artifactId>servlet-api</artifactId>
|
|
65 <version>3.0.20100224</version>
|
|
66 <type>jar</type>
|
|
67 <scope>provided</scope>
|
|
68 </dependency>
|
|
69 </dependencies>
|
|
70 </profile>
|
|
71 </profiles>
|
|
72 </project> |