Mercurial > hg > digilib-old
view common-jai/pom.xml @ 1006:c9c9621eb1e6
CLOSED - # 24: action "digilibUrl" for getting a full digilib url
https://it-dev.mpiwg-berlin.mpg.de/tracs/digilib/ticket/24
author | robcast |
---|---|
date | Tue, 14 Feb 2012 18:36:12 +0100 |
parents | b2d97b842612 |
children |
line wrap: on
line source
<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"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>digilib</artifactId> <groupId>digilib</groupId> <version>2.1-SNAPSHOT</version> <relativePath>..</relativePath> </parent> <artifactId>digilib-common-jai</artifactId> <name>digilib-common-jai</name> <description>digilib codec implementation using JAI toolkit</description> <repositories> <!-- This provides the required versions of JAI-ImageIO --> <repository> <id>geotools.osgeo.org</id> <name>Geotools repository</name> <url>http://download.osgeo.org/webdav/geotools/</url> </repository> </repositories> <dependencies> <dependency> <groupId>javax.media</groupId> <artifactId>jai_codec</artifactId> <version>1.1.3</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>javax.media</groupId> <artifactId>jai_core</artifactId> <version>1.1.3</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>digilib</groupId> <artifactId>digilib-common</artifactId> </dependency> </dependencies> </project>