comparison common-imagej/pom.xml @ 960:b2d97b842612

moved DocuImage implementations with non-standard toolkits (JAI, ImgeJ) into separate Maven modules. default build uses jai-imageio (now only one additional JAR in webapp!).
author robcast
date Wed, 25 Jan 2012 15:13:06 +0100
parents
children
comparison
equal deleted inserted replaced
959:f197e7760154 960:b2d97b842612
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>
6 <version>2.1-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>digilib-common-imagej</artifactId>
10 <name>digilib-common-imagej</name>
11 <description>digilib codec implementation using ImageJ toolkit</description>
12 <repositories>
13 <!-- ImageJ-1 -->
14 <repository>
15 <id>imagej.thirdparty</id>
16 <url>http://dev.imagejdev.org/maven2/thirdparty</url>
17 </repository>
18 <!-- ImageJ-2
19 <repository>
20 <id>imagej.releases</id>
21 <url>http://code.imagej.net/maven2/releases</url>
22 </repository>
23 <repository>
24 <id>imagej.snapshots</id>
25 <url>http://code.imagej.net/maven2/snapshots</url>
26 </repository> -->
27 </repositories>
28
29 <dependencies>
30 <!-- imageJ 1 -->
31 <dependency>
32 <groupId>net.imagej</groupId>
33 <artifactId>ij</artifactId>
34 <version>1.45s</version>
35 <type>jar</type>
36 <scope>compile</scope>
37 </dependency>
38 <!-- imageJ2
39 <dependency>
40 <groupId>net.imglib2</groupId>
41 <artifactId>imglib2-io</artifactId>
42 <version>2.0-SNAPSHOT</version>
43 </dependency> -->
44 <dependency>
45 <groupId>digilib</groupId>
46 <artifactId>digilib-common</artifactId>
47 </dependency>
48 </dependencies>
49 </project>