Mercurial > hg > digilib
comparison servlet/pom.xml @ 1169:888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
moved common code from servlet2 and servlet3 to servlet.
moved DigilibConfiguration and DigilibRequest to digilib.conf package (needs changes in JSPs).
author | robcast |
---|---|
date | Wed, 27 Mar 2013 17:23:44 +0100 |
parents | |
children | d4990c1463e3 |
comparison
equal
deleted
inserted
replaced
1168:6c5eb1896cc0 | 1169:888cdaf022fe |
---|---|
1 <?xml version="1.0"?> | |
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | |
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
4 <modelVersion>4.0.0</modelVersion> | |
5 <parent> | |
6 <groupId>digilib</groupId> | |
7 <artifactId>digilib</artifactId> | |
8 <version>2.1-SNAPSHOT</version> | |
9 </parent> | |
10 <artifactId>digilib-servlet</artifactId> | |
11 <name>digilib-servlet</name> | |
12 <url>http://digilib.berlios.de</url> | |
13 <properties> | |
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
15 </properties> | |
16 <description>The Digital Image Library - common Servlet code</description> | |
17 <dependencies> | |
18 <dependency> | |
19 <groupId>digilib</groupId> | |
20 <artifactId>digilib-common</artifactId> | |
21 </dependency> | |
22 <dependency> | |
23 <groupId>javax.servlet</groupId> | |
24 <artifactId>servlet-api</artifactId> | |
25 <version>2.3</version> | |
26 <type>jar</type> | |
27 <scope>provided</scope> | |
28 </dependency> | |
29 </dependencies> | |
30 </project> |