mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-04 03:55:28 -04:00
146 lines
4.9 KiB
XML
146 lines
4.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<groupId>com.twelvemonkeys</groupId>
|
|
<artifactId>twelvemonkeys</artifactId>
|
|
<version>3.1.1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.twelvemonkeys.imageio</groupId>
|
|
<artifactId>imageio</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>TwelveMonkeys :: ImageIO</name>
|
|
|
|
<contributors>
|
|
<contributor>
|
|
<name>Harald Kuhr</name>
|
|
<email>harald.kuhr@gmail.com</email>
|
|
<roles>
|
|
<role>owner</role>
|
|
<role>developer</role>
|
|
</roles>
|
|
</contributor>
|
|
</contributors>
|
|
|
|
<modules>
|
|
<!-- Support -->
|
|
<module>imageio-core</module>
|
|
<module>imageio-metadata</module>
|
|
<module>imageio-clippath</module>
|
|
|
|
<!-- Stand-alone readers/writers -->
|
|
<module>imageio-bmp</module>
|
|
<module>imageio-icns</module>
|
|
<module>imageio-iff</module>
|
|
<module>imageio-jpeg</module>
|
|
<module>imageio-pcx</module>
|
|
<module>imageio-pdf</module>
|
|
<module>imageio-pict</module>
|
|
<module>imageio-pnm</module>
|
|
<module>imageio-psd</module>
|
|
<module>imageio-sgi</module>
|
|
<module>imageio-tga</module>
|
|
<module>imageio-thumbsdb</module>
|
|
<module>imageio-tiff</module>
|
|
|
|
<!-- Wrappers for 3rd party libs -->
|
|
<module>imageio-batik</module>
|
|
|
|
<!-- Test cases for the JRE provided ImageIO plugins -->
|
|
<module>imageio-reference</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<core.version>3.1-SNAPSHOT</core.version>
|
|
<imageio.core.version>3.1-SNAPSHOT</imageio.core.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-lang</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-io</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-image</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-lang</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>tests</classifier>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-io</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>tests</classifier>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.7</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-all</artifactId>
|
|
<version>1.8.5</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-lang</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-io</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.common</groupId>
|
|
<artifactId>common-image</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>imageio-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>imageio-metadata</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>imageio-core</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>tests</classifier>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project>
|