Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-03 14:50:19 +01:00
f3cc93c94e
* Relocate org.yaml * Spigot did the same for yaml sadly
68 Zeilen
2.4 KiB
Plaintext
68 Zeilen
2.4 KiB
Plaintext
dependencies {
|
|
api(projects.core)
|
|
api(libs.erosion.bukkit.common) {
|
|
isTransitive = false
|
|
}
|
|
|
|
implementation(libs.adapters.spigot)
|
|
|
|
implementation(libs.commodore)
|
|
|
|
implementation(libs.adventure.text.serializer.bungeecord)
|
|
|
|
// Both folia-api and paper-mojangapi only provide Java 17 versions for 1.19
|
|
compileOnly(libs.folia.api) {
|
|
attributes {
|
|
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 17)
|
|
}
|
|
}
|
|
compileOnly(libs.paper.mojangapi) {
|
|
attributes {
|
|
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 17)
|
|
}
|
|
}
|
|
}
|
|
|
|
platformRelocate("it.unimi.dsi.fastutil")
|
|
platformRelocate("com.fasterxml.jackson")
|
|
// Relocate net.kyori but exclude the component logger
|
|
platformRelocate("net.kyori", "net.kyori.adventure.text.logger.slf4j.ComponentLogger")
|
|
platformRelocate("org.objectweb.asm")
|
|
platformRelocate("me.lucko.commodore")
|
|
platformRelocate("org.yaml") // Broken as of 1.20
|
|
|
|
// These dependencies are already present on the platform
|
|
provided(libs.viaversion)
|
|
|
|
application {
|
|
mainClass.set("org.geysermc.geyser.platform.spigot.GeyserSpigotMain")
|
|
}
|
|
|
|
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
|
|
archiveBaseName.set("Geyser-Spigot")
|
|
|
|
dependencies {
|
|
exclude(dependency("com.google.*:.*"))
|
|
|
|
// We cannot shade Netty, or else native libraries will not load
|
|
// Needed because older Spigot builds do not provide the haproxy module
|
|
exclude(dependency("io.netty:netty-transport-classes-epoll:.*"))
|
|
exclude(dependency("io.netty:netty-transport-native-epoll:.*"))
|
|
exclude(dependency("io.netty:netty-transport-native-unix-common:.*"))
|
|
exclude(dependency("io.netty:netty-transport-classes-kqueue:.*"))
|
|
exclude(dependency("io.netty:netty-transport-native-kqueue:.*"))
|
|
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-codec-dns:.*"))
|
|
exclude(dependency("io.netty:netty-resolver-dns:.*"))
|
|
exclude(dependency("io.netty:netty-resolver-dns-native-macos:.*"))
|
|
|
|
// Commodore includes Brigadier
|
|
exclude(dependency("com.mojang:.*"))
|
|
}
|
|
}
|