Mercurial > hg > digilib
annotate servlet3/pom.xml @ 1237:c3f4f1c02b11
digilib reads configuration from digilib.properties file in classpath (if digilib-config.xml is not found).
| author | robcast |
|---|---|
| date | Tue, 14 Jan 2014 09:44:22 +0100 |
| parents | 3017ade24bbb |
| children | 7a2de95a7b8e |
| 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> | |
| 16 <configuration> | |
| 17 <source>1.6</source> | |
| 18 <target>1.6</target> | |
| 19 </configuration> | |
| 20 </plugin> | |
| 21 </plugins> | |
| 22 </pluginManagement> | |
| 23 </build> | |
| 24 <dependencies> | |
| 25 <dependency> | |
| 26 <groupId>org.mortbay.jetty</groupId> | |
| 27 <artifactId>servlet-api</artifactId> | |
| 28 <version>3.0.20100224</version> | |
| 29 <type>jar</type> | |
| 30 <scope>provided</scope> | |
| 31 </dependency> | |
|
1169
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
32 <dependency> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
33 <groupId>digilib</groupId> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
34 <artifactId>digilib-servlet</artifactId> |
|
888cdaf022fe
shuffling classes around: moved last servlet dependencies from common to new servlet module.
robcast
parents:
1158
diff
changeset
|
35 </dependency> |
| 894 | 36 </dependencies> |
| 1158 | 37 <description>digilib servlet components using asynchronous servlet API.</description> |
| 894 | 38 </project> |
