view common/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 6423240583fb
children
line wrap: on
line source

<?xml version="1.0"?>
<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"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <artifactId>digilib</artifactId>
    <groupId>digilib</groupId>
    <version>2.1-SNAPSHOT</version>
  </parent>
  <artifactId>digilib-common</artifactId>
  <name>digilib-common</name>
  <description>The Digital Image Library - common library</description>
  <url>http://digilib.berlios.de</url>
  <packaging>jar</packaging>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <repositories>
    <!-- This provides Stian Soiland-Reyes re-packaged version of JAI-ImageIO -->
    <repository>
      <releases />
       <snapshots>
           <enabled>false</enabled>
       </snapshots>
       <id>mygrid-repository</id>
       <name>myGrid Repository</name>
       <url>http://www.mygrid.org.uk/maven/repository</url>
    </repository>
  </repositories>
  <dependencies>
	<dependency>
	    <groupId>net.java.dev.jai-imageio</groupId> 
	    <artifactId>jai-imageio-core-standalone</artifactId> 
	    <version>1.2-pre-dr-b04-2011-07-04</version> 
	</dependency>
  	<dependency>
  		<groupId>org.devlib.schmidt</groupId>
  		<artifactId>imageinfo</artifactId>
        <version>1.9</version>
  		<type>jar</type>
  		<scope>compile</scope>
  	</dependency>
  	<dependency>
  		<groupId>org.jdom</groupId>
  		<artifactId>jdom</artifactId>
  		<type>jar</type>
  		<scope>compile</scope>
  	</dependency>
  	<dependency>
  		<groupId>log4j</groupId>
  		<artifactId>log4j</artifactId>
  		<type>jar</type>
  		<scope>compile</scope>
  	</dependency>
    <dependency>
    	<groupId>javax.servlet</groupId>
    	<artifactId>servlet-api</artifactId>
    	<version>2.3</version>
    	<type>jar</type>
    	<scope>provided</scope>
    </dependency>
  </dependencies>
</project>