Mercurial > hg > digilib
annotate servlet3/pom.xml @ 1523:debdc9fdf48f
init hook for digilib plugin to initialize nested options
author | hertzhaft |
---|---|
date | Sun, 04 Sep 2016 12:55:08 +0200 |
parents | 2197975ec945 |
children | 8dff61ffdbc3 |
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> | |
1492
2197975ec945
first version of digilib 2.4 with newly refactored authentication and authorization.
robcast
parents:
1428
diff
changeset
|
6 <version>2.4-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> |