1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-30 20:29:19 +00:00

Fix overlapping netty dependency when shading.

Why does this protocol library even include the entirety of netty?!?
This commit is contained in:
SupremeMortal
2019-11-28 23:27:43 +00:00
parent 89cfbdcdfd
commit e70ac021af

View File

@@ -11,7 +11,6 @@
<artifactId>connector</artifactId>
<dependencies>
<dependency>
<groupId>org.geysermc</groupId>
<artifactId>api</artifactId>
<version>1.0-SNAPSHOT</version>
@@ -95,6 +94,12 @@
<artifactId>packetlib</artifactId>
<version>1.4-SNAPSHOT</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.steveice10</groupId>