Mercurial > hg > digilib
annotate text/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 | a0a8dbecb94c |
| children |
| rev | line source |
|---|---|
| 896 | 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| 3 <modelVersion>4.0.0</modelVersion> | |
| 4 <parent> | |
| 5 <artifactId>digilib</artifactId> | |
| 6 <groupId>digilib</groupId> | |
|
1689
93b59a801711
starting digilib 2.6.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
1671
diff
changeset
|
7 <version>2.6-SNAPSHOT</version> |
| 896 | 8 </parent> |
| 901 | 9 <artifactId>digilib-text</artifactId> |
| 896 | 10 <name>digilib-text</name> |
| 11 <dependencies> | |
| 12 <dependency> | |
| 13 <groupId>digilib</groupId> | |
| 14 <artifactId>digilib-common</artifactId> | |
| 15 <type>jar</type> | |
| 16 <scope>compile</scope> | |
| 17 </dependency> | |
| 18 </dependencies> | |
| 19 <description>The Digital Image Library - text (plain or XML) serving servlet</description> | |
|
1654
22dd14eccdc0
Change digilib project links to GitHub.
Robert Casties <r0bcas7@gmail.com>
parents:
1591
diff
changeset
|
20 <url>https://github.com/robcast/digilib</url> |
| 896 | 21 <profiles> |
| 22 <profile> | |
| 23 <id>servlet2</id> | |
| 24 <activation> | |
| 25 <property> | |
| 26 <name>servletapi</name> | |
| 27 <value>2</value> | |
| 28 </property> | |
| 29 </activation> | |
| 30 <dependencies> | |
| 31 <dependency> | |
| 32 <groupId>digilib</groupId> | |
| 33 <artifactId>digilib-servlet2</artifactId> | |
| 34 <type>jar</type> | |
| 35 <scope>provided</scope> | |
| 36 </dependency> | |
| 37 <dependency> | |
| 38 <groupId>javax.servlet</groupId> | |
| 39 <artifactId>servlet-api</artifactId> | |
| 1428 | 40 <version>2.4</version> |
| 896 | 41 <type>jar</type> |
| 42 <scope>provided</scope> | |
| 43 </dependency> | |
| 44 </dependencies> | |
| 45 </profile> | |
| 46 <profile> | |
| 47 <id>servlet3</id> | |
| 48 <activation> | |
|
1690
a0a8dbecb94c
Change web.xml setup to use WebServlet annotations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
1689
diff
changeset
|
49 <activeByDefault>true</activeByDefault> |
| 896 | 50 <property> |
| 51 <name>servletapi</name> | |
| 52 <value>3</value> | |
| 53 </property> | |
| 54 </activation> | |
| 55 <dependencies> | |
| 56 <dependency> | |
| 57 <groupId>digilib</groupId> | |
| 58 <artifactId>digilib-servlet3</artifactId> | |
| 59 <type>jar</type> | |
| 60 <scope>provided</scope> | |
| 61 </dependency> | |
| 62 <dependency> | |
| 63 <groupId>org.mortbay.jetty</groupId> | |
| 64 <artifactId>servlet-api</artifactId> | |
| 65 <version>3.0.20100224</version> | |
| 66 <type>jar</type> | |
| 67 <scope>provided</scope> | |
| 68 </dependency> | |
| 69 </dependencies> | |
| 70 </profile> | |
| 71 </profiles> | |
| 72 </project> |
