Mercurial > hg > digilib
annotate servlet3/pom.xml @ 1396:7a2de95a7b8e
documentation updated with Ubbo's codec tuning tips and IIIF API info.
author | robcast |
---|---|
date | Fri, 09 Oct 2015 16:45:40 +0200 |
parents | 3017ade24bbb |
children | 59805085a237 7247c046d9dc |
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> | |
1233 | 6 <version>2.3-SNAPSHOT</version> |
894 | 7 </parent> |
8 <artifactId>digilib-servlet3</artifactId> | |
9 <name>digilib-servlet3</name> | |
10 <build> | |
11 <pluginManagement> | |
12 <plugins> | |
13 <plugin> | |
14 <groupId>org.apache.maven.plugins</groupId> | |
15 <artifactId>maven-compiler-plugin</artifactId> | |
1396
7a2de95a7b8e
documentation updated with Ubbo's codec tuning tips and IIIF API info.
robcast
parents:
1233
diff
changeset
|
16 <version>3.3</version> |
894 | 17 <configuration> |
1396
7a2de95a7b8e
documentation updated with Ubbo's codec tuning tips and IIIF API info.
robcast
parents:
1233
diff
changeset
|
18 <source>1.7</source> |
7a2de95a7b8e
documentation updated with Ubbo's codec tuning tips and IIIF API info.
robcast
parents:
1233
diff
changeset
|
19 <target>1.7</target> |
894 | 20 </configuration> |
21 </plugin> | |
22 </plugins> | |
23 </pluginManagement> | |
24 </build> | |
25 <dependencies> | |
26 <dependency> | |
27 <groupId>org.mortbay.jetty</groupId> | |
28 <artifactId>servlet-api</artifactId> | |
29 <version>3.0.20100224</version> | |
30 <type>jar</type> | |
31 <scope>provided</scope> | |
32 </dependency> | |
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
33 <dependency> |
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
34 <groupId>digilib</groupId> |
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
35 <artifactId>digilib-servlet</artifactId> |
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
36 </dependency> |
894 | 37 </dependencies> |
1158 | 38 <description>digilib servlet components using asynchronous servlet API.</description> |
894 | 39 </project> |