2025-07-14 20:24:57 +02:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2025-04-27 00:09:28 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
|
|
|
|
<artifactId>gdxapp4d</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<artifactId>gdxapp4d-boot-desktop</artifactId>
|
|
|
|
|
<name>GDXApp⁴ᴰ-Boot-𐦠𐦴𐦫𐦢</name>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
|
|
|
|
<artifactId>gdxapp4d-tos4</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2025-07-14 20:24:57 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.badlogicgames.gdx</groupId>
|
|
|
|
|
<artifactId>gdx-platform</artifactId>
|
|
|
|
|
<classifier>natives-desktop</classifier>
|
|
|
|
|
</dependency>
|
2025-04-27 00:09:28 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.badlogicgames.gdx</groupId>
|
|
|
|
|
<artifactId>gdx-backend-lwjgl3</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>games.spooky.gdx</groupId>
|
|
|
|
|
<artifactId>gdx-nativefilechooser-desktop</artifactId>
|
|
|
|
|
</dependency>
|
2025-07-14 20:24:57 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
|
|
|
|
<artifactId>gdxapp4d-chain-boot-ship-engine</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>love.distributedrebirth.gdxapp4d</groupId>
|
|
|
|
|
<artifactId>gdxapp4d-chain-boot-warp-sea</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2025-04-27 00:09:28 +02:00
|
|
|
</dependencies>
|
2025-07-14 20:24:57 +02:00
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
2025-07-15 14:13:02 +02:00
|
|
|
<id>test-run</id>
|
2025-07-14 20:24:57 +02:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<mainClass>love.distributedrebirth.gdxapp4d.boot.desktop.GDXAppDesktopLauncher</mainClass>
|
|
|
|
|
<arguments>
|
|
|
|
|
<argument>use-local</argument>
|
|
|
|
|
</arguments>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
2025-04-27 00:09:28 +02:00
|
|
|
</project>
|