mirror of
https://github.com/a2geek/apple2-image-encoder.git
synced 2024-11-28 06:49:16 +00:00
55 lines
1.8 KiB
XML
55 lines
1.8 KiB
XML
|
<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/xsd/maven-4.0.0.xsd">
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>a2geek.apple2</groupId>
|
||
|
<artifactId>apple2-image-encoder</artifactId>
|
||
|
<version>4.4.0-FINAL</version>
|
||
|
<name>Apple II Image Encoder</name>
|
||
|
<description>A utility that got out of hand and became an application to move modern images to the Apple II platform.</description>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||
|
<maven.shade.version>2.4.3</maven.shade.version>
|
||
|
<junit.version>4.12</junit.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>${junit.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>${maven.shade.version}</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<transformers>
|
||
|
<transformer
|
||
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
||
|
<manifestEntries>
|
||
|
<Main-Class>a2geek.apple2.image.encoder.ui.ImageEncoderApp</Main-Class>
|
||
|
<Implementation-Title>Apple II Image Encoder</Implementation-Title>
|
||
|
<Implementation-Version>${project.version}</Implementation-Version>
|
||
|
</manifestEntries>
|
||
|
</transformer>
|
||
|
</transformers>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build></project>
|