884
|
1 <?xml version="1.0"?>
|
895
|
2 <project
|
|
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
884
|
5 <modelVersion>4.0.0</modelVersion>
|
|
6 <parent>
|
|
7 <artifactId>digilib</artifactId>
|
|
8 <groupId>digilib</groupId>
|
888
|
9 <version>2.0-SNAPSHOT</version>
|
884
|
10 </parent>
|
|
11 <groupId>digilib</groupId>
|
888
|
12 <artifactId>digilib-webapp</artifactId>
|
|
13 <version>2.0-SNAPSHOT</version>
|
|
14 <name>digilib-webapp</name>
|
894
|
15 <description>The Digital Image Library - web application server and HTML and JS clients</description>
|
888
|
16 <url>http://digilib.berlios.de</url>
|
884
|
17 <packaging>war</packaging>
|
|
18
|
|
19 <properties>
|
|
20 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
21 </properties>
|
|
22
|
894
|
23 <profiles>
|
895
|
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>compile</scope>
|
|
39 </dependency>
|
|
40 </dependencies>
|
|
41 <build>
|
|
42 <plugins>
|
|
43 <plugin>
|
|
44 <groupId>org.apache.maven.plugins</groupId>
|
|
45 <artifactId>maven-war-plugin</artifactId>
|
|
46 <configuration>
|
|
47 <webXml>${basedir}/src/main/webapp/WEB-INF/web-2.3.xml</webXml>
|
|
48 <classifier>srv3</classifier>
|
|
49 </configuration>
|
|
50 </plugin>
|
|
51 </plugins>
|
|
52 </build>
|
|
53 </profile>
|
|
54 <profile>
|
|
55 <id>servlet3</id>
|
|
56 <activation>
|
|
57 <property>
|
|
58 <name>servletapi</name>
|
|
59 <value>3</value>
|
|
60 </property>
|
|
61 </activation>
|
|
62 <dependencies>
|
|
63 <dependency>
|
|
64 <groupId>digilib</groupId>
|
|
65 <artifactId>digilib-servlet3</artifactId>
|
|
66 <type>jar</type>
|
|
67 <scope>compile</scope>
|
|
68 </dependency>
|
|
69 </dependencies>
|
|
70 <build>
|
894
|
71 <plugins>
|
|
72 <plugin>
|
|
73 <groupId>org.apache.maven.plugins</groupId>
|
|
74 <artifactId>maven-war-plugin</artifactId>
|
|
75 <configuration>
|
|
76 <webXml>${basedir}/src/main/webapp/WEB-INF/web-3.0.xml</webXml>
|
|
77 <classifier>srv3</classifier>
|
|
78 </configuration>
|
|
79 </plugin>
|
|
80 </plugins>
|
|
81 </build>
|
895
|
82 </profile>
|
|
83 <profile>
|
|
84 <id>pdf</id>
|
|
85 <dependencies>
|
|
86 <dependency>
|
|
87 <groupId>digilib</groupId>
|
|
88 <artifactId>digilib-pdf</artifactId>
|
|
89 <type>jar</type>
|
|
90 <scope>compile</scope>
|
|
91 </dependency>
|
|
92 </dependencies>
|
|
93 </profile>
|
894
|
94 </profiles>
|
884
|
95 </project>
|