1
0
mirror of https://github.com/GeyserMC/Floodgate.git synced 2025-12-31 04:36:47 +00:00

exclude gson and guava instead

This commit is contained in:
Konicai
2021-07-23 11:23:58 -04:00
parent 8da762506b
commit 1bedce6538

View File

@@ -32,7 +32,10 @@ dependencies {
// Base Floodgate
implementation("org.geysermc.floodgate:common:${project.mod_version}")
shadow("org.geysermc.floodgate:common:${project.mod_version}")
shadow("org.geysermc.floodgate:common:${project.mod_version}") {
exclude group: 'com.google.guava', module: "guava"
exclude group: 'com.google.code.gson', module: "gson"
}
include(modImplementation('cloud.commandframework:cloud-fabric:1.5.0-SNAPSHOT') {
because "Commands library implementation for Fabric - only supported on the snapshot"
@@ -111,7 +114,6 @@ shadowJar {
//relocate 'net.kyori', 'org.geysermc.floodgate.relocations.kyori'
//relocate 'cloud.commandframework', 'org.geysermc.floodgate.relocations.cloud'
relocate 'it.unimi.dsi.fastutil', 'org.geysermc.floodgate.relocations.fastutil'
relocate 'com.google.common', 'org.geysermc.floodgate.relocations.google.common'
}