style: format pom.xml

This commit is contained in:
Sven Vogel 2024-12-18 18:19:21 +01:00
parent 6a89040b71
commit 5abc9e112f
1 changed files with 402 additions and 386 deletions

32
pom.xml
View File

@ -1,23 +1,17 @@
<?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">
<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>me.srvstr</groupId>
<artifactId>gytebot</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<lwjgl.version>3.3.1</lwjgl.version>
<joml.version>1.10.5</joml.version>
<lwjgl.natives>natives-linux</lwjgl.natives>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
@ -29,7 +23,6 @@
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.lwjgl</groupId>
@ -383,6 +376,29 @@
<target>16</target>
</configuration>
</plugin>
<!-- Source: https://stackoverflow.com/a/41383973 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>me.srvstr.engine.Engine</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
</project>