Mercurial > hg > digilib-old
annotate servlet3/pom.xml @ 1095:20ad0034f1e5
more refactoring
author | hertzhaft |
---|---|
date | Sun, 21 Oct 2012 23:39:18 +0200 |
parents | b2d97b842612 |
children |
rev | line source |
---|---|
903 | 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> | |
960
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
6 <version>2.1-SNAPSHOT</version> |
903 | 7 </parent> |
8 <artifactId>digilib-servlet3</artifactId> | |
9 <name>digilib-servlet3</name> | |
10 <build> | |
11 <pluginManagement> | |
12 <plugins> | |
13 <plugin> | |
14 <groupId>org.apache.maven.plugins</groupId> | |
15 <artifactId>maven-compiler-plugin</artifactId> | |
16 <configuration> | |
17 <source>1.6</source> | |
18 <target>1.6</target> | |
19 </configuration> | |
20 </plugin> | |
21 </plugins> | |
22 </pluginManagement> | |
23 </build> | |
24 <dependencies> | |
25 <dependency> | |
26 <groupId>digilib</groupId> | |
27 <artifactId>digilib-common</artifactId> | |
28 <type>jar</type> | |
29 <scope>compile</scope> | |
30 </dependency> | |
31 <dependency> | |
32 <groupId>org.mortbay.jetty</groupId> | |
33 <artifactId>servlet-api</artifactId> | |
34 <version>3.0.20100224</version> | |
35 <type>jar</type> | |
36 <scope>provided</scope> | |
37 </dependency> | |
38 </dependencies> | |
39 </project> |