1
0
mirror of https://github.com/GeyserMC/Floodgate.git synced 2025-12-19 14:59:20 +00:00

Shade some dependencies

This commit is contained in:
Tim203
2021-07-23 17:44:01 +02:00
parent 3bcdd98c25
commit b66f10ae6d
7 changed files with 54 additions and 2 deletions

View File

@@ -52,6 +52,12 @@
<version>${cloud.version}</version>
</dependency>
<!-- the following common dependencies are already present on the platform -->
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-api</artifactId>
<version>${adventure-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
@@ -107,6 +113,14 @@
<goals>
<goal>shade</goal>
</goals>
<configuration>
<relocations>
<relocation>
<pattern>cloud.commandframework</pattern>
<shadedPattern>org.geysermc.floodgate.shaded.cloud.commandframework</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
<configuration>