Mercurial > hg > digilib
annotate servlet2/pom.xml @ 1714:d497eb11141c default tip
updated travis-ci config for automatic WAR releases.
author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
---|---|
date | Mon, 18 Feb 2019 20:49:15 +0100 |
parents | 93b59a801711 |
children |
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> | |
1689
93b59a801711
starting digilib 2.6.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
1671
diff
changeset
|
8 <version>2.6-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> |