view common-bioformats/pom.xml @ 1158:2ee261676828 default tip

better out-of-the box experience: * digilib works without config files using sensible defaults * new sample images folder used by default * config files moved to templates
author robcast
date Tue, 19 Feb 2013 17:32:25 +0100
parents f34891279a6e
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-bioformats</artifactId>
  <name>digilib-common-bioformats</name>
  <description>digilib codec implementation using Bio-Formats (http://loci.wisc.edu/software/bio-formats) library.</description>
	<repositories>
		<!--  we currently use ImageJ snapshot repo -->
		<repository>
			<id>imagej.snapshots</id>
			<url>http://code.imagej.net/maven2/snapshots</url>
			<snapshots/>
		</repository>
	</repositories>

  <dependencies>
  	<dependency>
  		<groupId>digilib</groupId>
  		<artifactId>digilib-common</artifactId>
  	</dependency>
  	<dependency>
  		<groupId>loci</groupId>
  		<artifactId>bio-formats</artifactId>
  		<version>5.0-SNAPSHOT</version>
  	</dependency>
  </dependencies>
</project>