Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-03 14:50:19 +01:00
2d9baf1bfc
* Send message to Java if command is Bedrock-only If a Java player attempts to use a Bedrock-only command, such as `geyser statistics`, they will get an error message stating that this command is only for Bedrock players. This commit also cleans up Velocity Adventure dependency usage. Issues were caused because of the way relocation works and because Velocity also uses Adventure. * Only look for a session if we have to * Update languages submodule
121 Zeilen
6.1 KiB
XML
121 Zeilen
6.1 KiB
XML
<?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>
|
|
<version>1.2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>bootstrap-velocity</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.geysermc</groupId>
|
|
<artifactId>connector</artifactId>
|
|
<version>1.2.0-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.velocitypowered</groupId>
|
|
<artifactId>velocity-api</artifactId>
|
|
<version>1.1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<finalName>${outputName}-Velocity</finalName>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources/</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.2.0</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifestEntries>
|
|
<Main-Class>org.geysermc.platform.velocity.GeyserVelocityMain</Main-Class>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>com.fasterxml.jackson</pattern>
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.jackson</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>it.unimi.dsi.fastutil</pattern>
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.fastutil</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.reflections</pattern>
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.reflections</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.google.common</pattern>
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.google.common</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.google.guava</pattern>
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.google.guava</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.dom4j</pattern>
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.dom4j</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>net.kyori.adventure.text.serializer.gson.legacyimpl</pattern>
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.kyori.legacyimpl</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<artifactSet>
|
|
<excludes>
|
|
<exclude>com.google.code.gson:*</exclude>
|
|
<!-- Needed because Velocity provides every dependency except netty-resolver-dns -->
|
|
<exclude>io.netty:netty-transport-native-epoll:*</exclude>
|
|
<exclude>io.netty:netty-transport-native-unix-common:*</exclude>
|
|
<exclude>io.netty:netty-transport-native-kqueue:*</exclude>
|
|
<exclude>io.netty:netty-handler:*</exclude>
|
|
<exclude>io.netty:netty-common:*</exclude>
|
|
<exclude>io.netty:netty-buffer:*</exclude>
|
|
<exclude>io.netty:netty-resolver:*</exclude>
|
|
<exclude>io.netty:netty-transport:*</exclude>
|
|
<exclude>io.netty:netty-codec:*</exclude>
|
|
<exclude>org.slf4j:*</exclude>
|
|
<exclude>org.ow2.asm:*</exclude>
|
|
<!-- Exclude all Kyori dependencies except the legacy NBT serializer -->
|
|
<exclude>net.kyori:adventure-api:*</exclude>
|
|
<exclude>net.kyori:examination-api:*</exclude>
|
|
<exclude>net.kyori:examination-string:*</exclude>
|
|
<exclude>net.kyori:adventure-text-serializer-gson:*</exclude>
|
|
<exclude>net.kyori:adventure-text-serializer-legacy:*</exclude>
|
|
<exclude>net.kyori:adventure-nbt:*</exclude>
|
|
</excludes>
|
|
</artifactSet>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |