Mercurial > hg > digilib
view common/pom.xml @ 1424:21da78f0a267
Merge from new_scaling branch
75ec39abcbba2d5d6e3e12fc43c8a829e7dd18d7
author | robcast |
---|---|
date | Tue, 27 Oct 2015 11:23:30 +0100 |
parents | 7247c046d9dc |
children | 053ff2ca45e3 |
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.3-SNAPSHOT</version> </parent> <artifactId>digilib-common</artifactId> <name>digilib-common</name> <description>The Digital Image Library - common library</description> <url>http://digilib.sourceforge.net</url> <packaging>jar</packaging> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>imageio-jai</id> <!-- use JAI-ImageIO plugin --> <activation> <activeByDefault>true</activeByDefault> <property> <name>imageio</name> <value>jai</value> </property> </activation> <dependencies> <dependency> <groupId>com.github.jai-imageio</groupId> <artifactId>jai-imageio-core</artifactId> <version>1.3.0</version> <type>jar</type> <scope>compile</scope> </dependency> <!-- <dependency> <groupId>com.github.jai-imageio</groupId> <artifactId>jai-imageio-jpeg2000</artifactId> <version>1.3.0</version> </dependency> --> </dependencies> </profile> <profile> <id>imageio-12m</id> <!-- use Twelvemonkeys ImageIO plugins --> <activation> <property> <name>imageio</name> <value>12m</value> </property> </activation> <dependencies> <dependency> <groupId>com.twelvemonkeys.imageio</groupId> <artifactId>imageio-jpeg</artifactId> <version>3.1.2</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>com.twelvemonkeys.imageio</groupId> <artifactId>imageio-tiff</artifactId> <version>3.1.2</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> </profile> </profiles> <dependencies> <dependency> <groupId>org.devlib.schmidt</groupId> <artifactId>imageinfo</artifactId> <version>1.9</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> </project>