mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2026-03-20 00:00:03 -04:00
56 lines
2.3 KiB
XML
56 lines
2.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>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<!-- TODO: Make default -->
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<!--<mainClass>com.mycompany.app.App</mainClass>-->
|
|
<packageName>com.twelvemonkeys.imageio.plugins.psd</packageName>
|
|
</manifest>
|
|
<manifestEntries>
|
|
<Implementation-Title>${project.name}</Implementation-Title>
|
|
<Implementation-Vendor>TwelveMonkeys</Implementation-Vendor>
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
<Implementation-URL>https://twelvemonkeys-imageio.dev.java.net/</Implementation-URL>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |