Mercurial > hg > digilib
annotate servlet3/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 <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"> |
2 <modelVersion>4.0.0</modelVersion> | |
3 <parent> | |
4 <artifactId>digilib</artifactId> | |
5 <groupId>digilib</groupId> | |
1689
93b59a801711
starting digilib 2.6.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
1671
diff
changeset
|
6 <version>2.6-SNAPSHOT</version> |
894 | 7 </parent> |
8 <artifactId>digilib-servlet3</artifactId> | |
9 <name>digilib-servlet3</name> | |
1428 | 10 |
894 | 11 <dependencies> |
12 <dependency> | |
13 <groupId>org.mortbay.jetty</groupId> | |
14 <artifactId>servlet-api</artifactId> | |
15 <version>3.0.20100224</version> | |
16 <type>jar</type> | |
17 <scope>provided</scope> | |
18 </dependency> | |
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
19 <dependency> |
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
20 <groupId>digilib</groupId> |
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
21 <artifactId>digilib-servlet</artifactId> |
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
22 </dependency> |
894 | 23 </dependencies> |
1158 | 24 <description>digilib servlet components using asynchronous servlet API.</description> |
894 | 25 </project> |