3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-09-08 20:43:04 +02:00

Apparently exclusion isn't working. Temporary fix

Dieser Commit ist enthalten in:
Camotoy 2021-01-15 19:42:47 -05:00
Ursprung 49f02081e0
Commit 24da65dcb5

Datei anzeigen

@ -85,10 +85,8 @@ task sourcesJar(type: Jar, dependsOn: classes) {
shadowJar { shadowJar {
configurations = [project.configurations.shadow] configurations = [project.configurations.shadow]
relocate("it.unimi.dsi.fastutil", "org.geysermc.relocate.fastutil") relocate("it.unimi.dsi.fastutil", "org.geysermc.relocate.fastutil")
dependencies { relocate("org.objectweb.asm", "org.geysermc.relocate.asm")
// https://github.com/CardboardPowered/cardboard/issues/139 relocate("org.yaml", "org.geysermc.relocate.yaml") // https://github.com/CardboardPowered/cardboard/issues/139
exclude(dependency('org.objectweb:asm:*'))
}
} }
jar { jar {