2019-12-01 22:16:52 +01: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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.geysermc</groupId>
|
|
|
|
<artifactId>bootstrap-parent</artifactId>
|
2021-11-24 16:14:27 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2019-12-01 22:16:52 +01:00
|
|
|
</parent>
|
|
|
|
<artifactId>bootstrap-standalone</artifactId>
|
2020-11-17 18:03:12 +01:00
|
|
|
|
2021-12-09 20:18:16 +01:00
|
|
|
<properties>
|
|
|
|
<log4j.version>2.15.0-20211206.182754-101</log4j.version>
|
|
|
|
</properties>
|
|
|
|
|
2019-12-01 22:16:52 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.geysermc</groupId>
|
2021-11-20 20:56:40 +01:00
|
|
|
<artifactId>core</artifactId>
|
2021-11-24 16:14:27 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2019-12-01 22:16:52 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-12-02 01:28:36 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.minecrell</groupId>
|
|
|
|
<artifactId>terminalconsoleappender</artifactId>
|
2020-07-03 02:10:43 +02:00
|
|
|
<version>1.2.0</version>
|
2020-03-01 17:48:49 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jline</groupId>
|
|
|
|
<artifactId>jline-reader</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jline</groupId>
|
|
|
|
<artifactId>jline-terminal-jna</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jline</groupId>
|
|
|
|
<artifactId>jline-terminal</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-12-02 01:28:36 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-03-01 17:48:49 +01:00
|
|
|
<groupId>org.jline</groupId>
|
|
|
|
<artifactId>jline-terminal</artifactId>
|
2021-08-18 04:44:33 +02:00
|
|
|
<version>3.20.0</version>
|
2019-12-02 01:28:36 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-03-01 17:48:49 +01:00
|
|
|
<groupId>org.jline</groupId>
|
|
|
|
<artifactId>jline-terminal-jna</artifactId>
|
2021-08-18 04:44:33 +02:00
|
|
|
<version>3.20.0</version>
|
2019-12-02 01:28:36 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-03-01 17:48:49 +01:00
|
|
|
<groupId>org.jline</groupId>
|
|
|
|
<artifactId>jline-reader</artifactId>
|
2021-08-18 04:44:33 +02:00
|
|
|
<version>3.20.0</version>
|
2020-03-01 17:48:49 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-api</artifactId>
|
2021-12-09 20:18:16 +01:00
|
|
|
<version>${log4j.version}</version>
|
2020-03-01 17:48:49 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
2021-12-09 20:18:16 +01:00
|
|
|
<version>${log4j.version}</version>
|
2020-03-01 17:48:49 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-slf4j18-impl</artifactId>
|
2021-12-09 20:18:16 +01:00
|
|
|
<version>${log4j.version}</version>
|
2019-12-02 01:28:36 +01:00
|
|
|
</dependency>
|
2019-12-01 22:16:52 +01:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
2019-12-02 00:10:58 +01:00
|
|
|
<finalName>${outputName}</finalName>
|
2019-12-01 22:16:52 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
2021-11-20 22:34:30 +01:00
|
|
|
<Main-Class>org.geysermc.geyser.platform.standalone.GeyserStandaloneBootstrap</Main-Class>
|
2019-12-01 22:16:52 +01:00
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2021-09-10 20:10:56 +02:00
|
|
|
<version>3.3.0-SNAPSHOT</version>
|
2020-03-05 03:35:23 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.edwgiz</groupId>
|
|
|
|
<artifactId>maven-shade-plugin.log4j2-cachefile-transformer</artifactId>
|
|
|
|
<version>2.8.1</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-12-01 22:16:52 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
2019-12-09 05:41:50 +01:00
|
|
|
<configuration>
|
2020-03-05 03:35:23 +01:00
|
|
|
<minimizeJar>false</minimizeJar>
|
2019-12-09 05:41:50 +01:00
|
|
|
</configuration>
|
2019-12-01 22:16:52 +01:00
|
|
|
</execution>
|
|
|
|
</executions>
|
2020-03-05 03:35:23 +01:00
|
|
|
<configuration>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/versions/9/module-info.class</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
<transformers>
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2021-11-20 22:34:30 +01:00
|
|
|
<mainClass>org.geysermc.geyser.platform.standalone.GeyserStandaloneBootstrap</mainClass>
|
2020-04-09 17:46:59 +02:00
|
|
|
<manifestEntries>
|
|
|
|
<Multi-Release>true</Multi-Release>
|
|
|
|
</manifestEntries>
|
2020-03-05 03:35:23 +01:00
|
|
|
</transformer>
|
|
|
|
<transformer
|
|
|
|
implementation="com.github.edwgiz.mavenShadePlugin.log4j2CacheTransformer.PluginsCacheFileTransformer">
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
|
|
|
|
</configuration>
|
2019-12-01 22:16:52 +01:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-04-09 17:46:59 +02:00
|
|
|
</project>
|