diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/servlet/pom.xml	Wed Mar 27 17:23:44 2013 +0100
@@ -0,0 +1,30 @@
+<?xml version="1.0"?>
+<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"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>digilib</groupId>
+    <artifactId>digilib</artifactId>
+    <version>2.1-SNAPSHOT</version>
+  </parent>
+  <artifactId>digilib-servlet</artifactId>
+  <name>digilib-servlet</name>
+  <url>http://digilib.berlios.de</url>
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
+  <description>The Digital Image Library - common Servlet code</description>
+  <dependencies>
+  	<dependency>
+  		<groupId>digilib</groupId>
+  		<artifactId>digilib-common</artifactId>
+  	</dependency>
+  	<dependency>
+  		<groupId>javax.servlet</groupId>
+  		<artifactId>servlet-api</artifactId>
+  		<version>2.3</version>
+  		<type>jar</type>
+  		<scope>provided</scope>
+  	</dependency>
+  </dependencies>
+</project>