view servlet3/pom.xml @ 1478:ef98becd15b1

add methods to deal with image inputs that are not files (e.g. TextGrid TGCrud).
author robcast
date Fri, 05 Feb 2016 19:03:45 +0100
parents 053ff2ca45e3
children b8f2fde0f034 2197975ec945
line wrap: on
line source

<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">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <artifactId>digilib</artifactId>
    <groupId>digilib</groupId>
    <version>2.3-SNAPSHOT</version>
  </parent>
  <artifactId>digilib-servlet3</artifactId>
  <name>digilib-servlet3</name>

  <dependencies>
  	<dependency>
  		<groupId>org.mortbay.jetty</groupId>
  		<artifactId>servlet-api</artifactId>
  		<version>3.0.20100224</version>
  		<type>jar</type>
  		<scope>provided</scope>
  	</dependency>
  	<dependency>
  		<groupId>digilib</groupId>
  		<artifactId>digilib-servlet</artifactId>
  	</dependency>
  </dependencies>
  <description>digilib servlet components using asynchronous servlet API.</description>
</project>