Mercurial > hg > digilib
annotate text/pom.xml @ 1660:75a74f7045b4
Merge branch 'master' into release-2.5
Conflicts:
common/src/main/java/digilib/conf/DigilibConfiguration.java
author | Robert Casties <r0bcas7@gmail.com> |
---|---|
date | Tue, 21 Nov 2017 15:18:31 +0100 |
parents | 392a149ed4d6 22dd14eccdc0 |
children | cf9dcddf4ec6 |
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> | |
1629 | 7 <version>2.5.3</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 <activeByDefault>true</activeByDefault> | |
26 <property> | |
27 <name>servletapi</name> | |
28 <value>2</value> | |
29 </property> | |
30 </activation> | |
31 <dependencies> | |
32 <dependency> | |
33 <groupId>digilib</groupId> | |
34 <artifactId>digilib-servlet2</artifactId> | |
35 <type>jar</type> | |
36 <scope>provided</scope> | |
37 </dependency> | |
38 <dependency> | |
39 <groupId>javax.servlet</groupId> | |
40 <artifactId>servlet-api</artifactId> | |
1428 | 41 <version>2.4</version> |
896 | 42 <type>jar</type> |
43 <scope>provided</scope> | |
44 </dependency> | |
45 </dependencies> | |
46 </profile> | |
47 <profile> | |
48 <id>servlet3</id> | |
49 <activation> | |
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> |