Mercurial > hg > digilib
annotate servlet2/pom.xml @ 1635:cd45d49f438d
cleanup and add doc about Manifester servlet.
author | robcast |
---|---|
date | Fri, 02 Jun 2017 19:01:36 +0200 |
parents | 8dff61ffdbc3 |
children | e52ac05b302d |
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> | |
1591
8dff61ffdbc3
new digilib version 2.5 (for new Scaler options/flags handling)
robcast
parents:
1499
diff
changeset
|
8 <version>2.5-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> | |
1499
31566778c251
new OpenID Connect authentication OpenIdAuthnOps works now!
robcast
parents:
1492
diff
changeset
|
21 <version>2.4</version> |
894 | 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> |