3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-07-30 09:08:09 +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 {
configurations = [project.configurations.shadow]
relocate("it.unimi.dsi.fastutil", "org.geysermc.relocate.fastutil")
dependencies {
// https://github.com/CardboardPowered/cardboard/issues/139
exclude(dependency('org.objectweb:asm:*'))
}
relocate("org.objectweb.asm", "org.geysermc.relocate.asm")
relocate("org.yaml", "org.geysermc.relocate.yaml") // https://github.com/CardboardPowered/cardboard/issues/139
}
jar {