Mercurial > hg > digilib-old
annotate common/pom.xml @ 1086:782593171adb
comments for annotations plugin.
author | robcast |
---|---|
date | Mon, 04 Jun 2012 11:09:41 +0200 |
parents | b2d97b842612 |
children | 6423240583fb |
rev | line source |
---|---|
893 | 1 <?xml version="1.0"?> |
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | |
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
4 <modelVersion>4.0.0</modelVersion> | |
5 <parent> | |
6 <artifactId>digilib</artifactId> | |
7 <groupId>digilib</groupId> | |
960
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
8 <version>2.1-SNAPSHOT</version> |
893 | 9 </parent> |
903 | 10 <artifactId>digilib-common</artifactId> |
11 <name>digilib-common</name> | |
12 <description>The Digital Image Library - common library</description> | |
894 | 13 <url>http://digilib.berlios.de</url> |
893 | 14 <packaging>jar</packaging> |
15 | |
16 <properties> | |
17 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
18 </properties> | |
19 | |
960
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
20 <repositories> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
21 <!-- This provides the required versions of JAI-ImageIO --> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
22 <repository> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
23 <id>geotools.osgeo.org</id> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
24 <name>Geotools repository</name> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
25 <url>http://download.osgeo.org/webdav/geotools/</url> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
26 </repository> |
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
27 </repositories> |
893 | 28 <dependencies> |
898 | 29 <dependency> |
30 <groupId>javax.media</groupId> | |
31 <artifactId>jai_imageio</artifactId> | |
899 | 32 <type>jar</type> |
960
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
33 <version>1.1</version> |
899 | 34 <scope>compile</scope> |
898 | 35 </dependency> |
894 | 36 <dependency> |
37 <groupId>org.devlib.schmidt</groupId> | |
38 <artifactId>imageinfo</artifactId> | |
960
b2d97b842612
moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules.
robcast
parents:
903
diff
changeset
|
39 <version>1.9</version> |
894 | 40 <type>jar</type> |
41 <scope>compile</scope> | |
42 </dependency> | |
43 <dependency> | |
44 <groupId>org.jdom</groupId> | |
45 <artifactId>jdom</artifactId> | |
46 <type>jar</type> | |
47 <scope>compile</scope> | |
48 </dependency> | |
49 <dependency> | |
50 <groupId>log4j</groupId> | |
51 <artifactId>log4j</artifactId> | |
52 <type>jar</type> | |
53 <scope>compile</scope> | |
54 </dependency> | |
55 <dependency> | |
903 | 56 <groupId>javax.servlet</groupId> |
894 | 57 <artifactId>servlet-api</artifactId> |
903 | 58 <version>2.3</version> |
894 | 59 <type>jar</type> |
60 <scope>provided</scope> | |
61 </dependency> | |
893 | 62 </dependencies> |
63 </project> |