comparison servlet3/pom.xml @ 903:7779b37d1d05

refactored into maven modules per servlet type. can build servlet-api 2.3 and 3.0 via profile now!
author robcast
date Tue, 26 Apr 2011 20:24:31 +0200
parents
children b2d97b842612
comparison
equal deleted inserted replaced
902:89ba3ffcf552 903:7779b37d1d05
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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <artifactId>digilib</artifactId>
5 <groupId>digilib</groupId>
6 <version>2.0-SNAPSHOT</version>
7 </parent>
8 <groupId>digilib</groupId>
9 <artifactId>digilib-servlet3</artifactId>
10 <version>2.0-SNAPSHOT</version>
11 <name>digilib-servlet3</name>
12 <build>
13 <pluginManagement>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <version>2.3.2</version>
19 <configuration>
20 <source>1.6</source>
21 <target>1.6</target>
22 </configuration>
23 </plugin>
24 </plugins>
25 </pluginManagement>
26 </build>
27 <dependencies>
28 <dependency>
29 <groupId>digilib</groupId>
30 <artifactId>digilib-common</artifactId>
31 <type>jar</type>
32 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>org.mortbay.jetty</groupId>
36 <artifactId>servlet-api</artifactId>
37 <version>3.0.20100224</version>
38 <type>jar</type>
39 <scope>provided</scope>
40 </dependency>
41 </dependencies>
42 </project>