Fixed some pom issues

This commit is contained in:
Erlend Hamnaberg 2010-01-29 19:47:05 +01:00
parent ee99550a65
commit 5b7fcd5c95
2 changed files with 15 additions and 10 deletions

View File

@ -2,29 +2,28 @@
<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.imageio</groupId>
<artifactId>imageio</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.twelvemonkeys.imageio</groupId>
<artifactId>twelvemonkeys-imageio-metadata</artifactId>
<version>2.3-SNAPSHOT</version>
<artifactId>imageio-metadata</artifactId>
<name>TwelveMonkeys ImageIO Metadata</name>
<description>
ImageIO metadata module.
</description>
<parent>
<artifactId>twelvemonkeys-imageio</artifactId>
<groupId>com.twelvemonkeys</groupId>
<version>2.3-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>com.twelvemonkeys.imageio</groupId>
<artifactId>twelvemonkeys-imageio-core</artifactId>
<artifactId>imageio-core</artifactId>
</dependency>
<dependency>
<groupId>com.twelvemonkeys.imageio</groupId>
<artifactId>twelvemonkeys-imageio-core</artifactId>
<artifactId>imageio-core</artifactId>
<classifier>tests</classifier>
</dependency>
</dependencies>

View File

@ -29,6 +29,7 @@
<modules>
<!-- Support -->
<module>imageio-core</module>
<module>imageio-metadata</module>
<!-- Stand-alone readers/writers -->
<module>imageio-ico</module>
@ -99,6 +100,11 @@
<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>