69 lines
1.9 KiB
XML
69 lines
1.9 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">
|
|
<parent>
|
|
<groupId>org.kareha.hareka</groupId>
|
|
<artifactId>hareka</artifactId>
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>swing</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Hareka Swing Client</name>
|
|
<url>https://tyatsumi.gitlab.io/hareka/</url>
|
|
<description>Swing client module for Hareka, a multiplayer online role-playing game.</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.kareha.hareka</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.kareha.hareka</groupId>
|
|
<artifactId>client</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.kareha.hareka</groupId>
|
|
<artifactId>sound</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.kareha.hareka</groupId>
|
|
<artifactId>graphics</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>org.kareha.hareka.swing.Main</mainClass>
|
|
</manifest>
|
|
<manifestEntries>
|
|
<SplashScreen-Image>org/kareha/hareka/swing/splash.png</SplashScreen-Image>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>io.github.zlika</groupId>
|
|
<artifactId>reproducible-build-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>strip-jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|