Mercurial > hg > digilib
annotate servlet3/pom.xml @ 1106:abc932215e94
annotations use new Annotator-digilibintegration plugin.
| author | robcast |
|---|---|
| date | Mon, 05 Nov 2012 19:27:14 +0100 |
| parents | a052cfbe8afb |
| children | 29e86ae1e3b2 |
| 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> | |
|
950
a052cfbe8afb
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
894
diff
changeset
|
6 <version>2.1-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>digilib</groupId> | |
| 27 <artifactId>digilib-common</artifactId> | |
| 28 <type>jar</type> | |
| 29 <scope>compile</scope> | |
| 30 </dependency> | |
| 31 <dependency> | |
| 32 <groupId>org.mortbay.jetty</groupId> | |
| 33 <artifactId>servlet-api</artifactId> | |
| 34 <version>3.0.20100224</version> | |
| 35 <type>jar</type> | |
| 36 <scope>provided</scope> | |
| 37 </dependency> | |
| 38 </dependencies> | |
| 39 </project> |
