2022-07-03 20:12:40 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>
|
|
|
|
<artifactId>ace-of-shades-2</artifactId>
|
|
|
|
<groupId>nl.andrewl</groupId>
|
2022-07-28 09:19:43 +00:00
|
|
|
<version>1.2.0</version>
|
2022-07-03 20:12:40 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>aos2-client</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<lwjgl.version>3.3.1</lwjgl.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-linux-amd64</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>unix</family>
|
|
|
|
<arch>amd64</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-linux</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-linux-aarch64</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>unix</family>
|
|
|
|
<arch>aarch64</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-linux-arm64</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-linux-arm</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>unix</family>
|
|
|
|
<arch>arm</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-linux-arm32</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-linux-arm32</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>unix</family>
|
|
|
|
<arch>arm32</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-linux-arm32</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-macos-x86_64</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>mac</family>
|
|
|
|
<arch>x86_64</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-macos</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-macos-aarch64</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>mac</family>
|
|
|
|
<arch>aarch64</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-macos-arm64</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-windows-amd64</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>windows</family>
|
|
|
|
<arch>amd64</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-windows</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-windows-x86</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>windows</family>
|
|
|
|
<arch>x86</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-windows-x86</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>lwjgl-natives-windows-aarch64</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>windows</family>
|
|
|
|
<arch>aarch64</arch>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<lwjgl.natives>natives-windows-arm64</lwjgl.natives>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-bom</artifactId>
|
|
|
|
<version>${lwjgl.version}</version>
|
|
|
|
<scope>import</scope>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>nl.andrewl</groupId>
|
|
|
|
<artifactId>aos2-core</artifactId>
|
2022-07-26 15:15:14 +00:00
|
|
|
<version>${project.parent.version}</version>
|
2022-07-03 20:12:40 +00:00
|
|
|
</dependency>
|
2022-07-17 14:24:41 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.javagl</groupId>
|
|
|
|
<artifactId>obj</artifactId>
|
|
|
|
<version>0.3.0</version>
|
|
|
|
</dependency>
|
2022-07-03 20:12:40 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-assimp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-glfw</artifactId>
|
|
|
|
</dependency>
|
2022-07-27 09:28:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-nanovg</artifactId>
|
|
|
|
</dependency>
|
2022-07-03 20:12:40 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-meshoptimizer</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-openal</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-opengl</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-stb</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-assimp</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-glfw</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
2022-07-27 09:28:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-nanovg</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
2022-07-03 20:12:40 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-meshoptimizer</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-openal</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-opengl</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lwjgl</groupId>
|
|
|
|
<artifactId>lwjgl-stb</artifactId>
|
|
|
|
<classifier>${lwjgl.natives}</classifier>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2022-07-05 13:51:57 +00:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
2022-07-05 19:49:04 +00:00
|
|
|
<mainClass>nl.andrewl.aos2_client.Client</mainClass>
|
2022-07-05 13:51:57 +00:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-07-03 20:12:40 +00:00
|
|
|
</project>
|