mirror of
https://github.com/GeyserMC/Floodgate.git
synced 2025-12-19 14:59:20 +00:00
24 lines
593 B
Plaintext
24 lines
593 B
Plaintext
plugins {
|
|
id("floodgate.shadow-conventions")
|
|
id("floodgate.publish-conventions")
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.coreNetty4)
|
|
annotationProcessor(projects.coreNetty4)
|
|
annotationProcessor(libs.micronaut.inject.java)
|
|
compileOnlyApi(projects.isolation)
|
|
|
|
implementation(libs.cloud.bungee)
|
|
implementation(libs.adventure.platform.bungee)
|
|
}
|
|
|
|
relocate("net.kyori")
|
|
relocate("org.incendo.cloud")
|
|
relocate("io.leangen.geantyref") // used in cloud
|
|
|
|
// these dependencies are already present on the platform
|
|
provided(libs.bungee)
|
|
provided(libs.gson)
|
|
provided(libs.snakeyaml)
|