mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2026-04-05 00:00:01 -04:00
- Refactored metadata support - Moved standard metadata support (EXIF, IPTC & XMP) to separate module - Changes to PSD metadata implementation
36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.twelvemonkeys.imageio</groupId>
|
|
<artifactId>twelvemonkeys-imageio-psd</artifactId>
|
|
<version>2.3-SNAPSHOT</version>
|
|
<name>TwelveMonkeys ImageIO PSD plugin</name>
|
|
<description>
|
|
ImageIO plugin for Adobe Photoshop Document (PSD).
|
|
</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>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.imageio</groupId>
|
|
<artifactId>twelvemonkeys-imageio-core</artifactId>
|
|
<classifier>tests</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.imageio</groupId>
|
|
<artifactId>twelvemonkeys-imageio-metadata</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|