Mercurial > hg > digilib
annotate servlet2/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 | 0fec3e64e95b |
children | d4990c1463e3 |
rev | line source |
---|---|
894 | 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 <artifactId>digilib</artifactId> | |
7 <groupId>digilib</groupId> | |
954 | 8 <version>2.1-SNAPSHOT</version> |
894 | 9 </parent> |
10 <artifactId>digilib-servlet2</artifactId> | |
11 <name>digilib-servlet2</name> | |
12 <description>The Digital Image Library - Servlet with version 2 API</description> | |
13 <packaging>jar</packaging> | |
14 <properties> | |
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
16 </properties> | |
17 <dependencies> | |
18 <dependency> | |
19 <groupId>javax.servlet</groupId> | |
20 <artifactId>servlet-api</artifactId> | |
21 <version>2.3</version> | |
22 <type>jar</type> | |
23 <scope>provided</scope> | |
24 </dependency> | |
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1159
diff
changeset
|
25 <dependency> |
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1159
diff
changeset
|
26 <groupId>digilib</groupId> |
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1159
diff
changeset
|
27 <artifactId>digilib-servlet</artifactId> |
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1159
diff
changeset
|
28 </dependency> |
894 | 29 </dependencies> |
30 </project> |