view servlet/pom.xml @ 1658:28df291d4e26

Updated documentation. Updated build and install instructions to be simpler and hopefully more clear. Updated @funkyfuture's refactored configuration docs (still lots TODO). Added @funkyfuture's server-setup docu to menu. Renamed non-minified digilib-dbg.html to digilib-dev.html
author Robert Casties <r0bcas7@gmail.com>
date Mon, 20 Nov 2017 21:08:35 +0100
parents 22dd14eccdc0
children 75a74f7045b4 254167aef851
line wrap: on
line source

<?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.5-SNAPSHOT</version>
  </parent>
  <artifactId>digilib-servlet</artifactId>
  <name>digilib-servlet</name>
  <url>https://github.com/robcast/digilib</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.4</version>
  		<type>jar</type>
  		<scope>provided</scope>
  	</dependency>
  	<dependency>
  		<groupId>org.bitbucket.b_c</groupId>
  		<artifactId>jose4j</artifactId>
  		<version>0.5.0</version>
  	</dependency>
  </dependencies>
</project>