Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-03 14:50:19 +01:00
867cf6da05
* Use JiJ inclusion for Fabric/NeoForge to prevent mod conflicts. Further: Don't publish shadow jars to maven. * Shade and relocate dependencies that don't conform to SemVer on Fabric * Shade/Relocate dependencies on Fabric to avoid version warnings * Use relocate function from the build-logic plugin
36 Zeilen
1.4 KiB
Plaintext
36 Zeilen
1.4 KiB
Plaintext
dependencies {
|
|
api(projects.core)
|
|
implementation(libs.adventure.text.serializer.bungeecord)
|
|
compileOnlyApi(libs.bungeecord.proxy)
|
|
}
|
|
|
|
platformRelocate("net.md_5.bungee.jni")
|
|
platformRelocate("com.fasterxml.jackson")
|
|
platformRelocate("io.netty.channel.kqueue") // This is not used because relocating breaks natives, but we must include it or else we get ClassDefNotFound
|
|
platformRelocate("net.kyori")
|
|
platformRelocate("org.yaml") // Broken as of 1.20
|
|
|
|
// These dependencies are already present on the platform
|
|
provided(libs.bungeecord.proxy)
|
|
|
|
application {
|
|
mainClass.set("org.geysermc.geyser.platform.bungeecord.GeyserBungeeMain")
|
|
}
|
|
|
|
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
|
|
archiveBaseName.set("Geyser-BungeeCord")
|
|
|
|
dependencies {
|
|
exclude(dependency("com.google.*:.*"))
|
|
exclude(dependency("io.netty:netty-transport-native-epoll:.*"))
|
|
exclude(dependency("io.netty:netty-transport-native-unix-common:.*"))
|
|
exclude(dependency("io.netty:netty-handler:.*"))
|
|
exclude(dependency("io.netty:netty-common:.*"))
|
|
exclude(dependency("io.netty:netty-buffer:.*"))
|
|
exclude(dependency("io.netty:netty-resolver:.*"))
|
|
exclude(dependency("io.netty:netty-transport:.*"))
|
|
exclude(dependency("io.netty:netty-codec:.*"))
|
|
exclude(dependency("io.netty:netty-resolver-dns:.*"))
|
|
}
|
|
}
|