mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-02 08:39:59 +01:00
25 lines
747 B
Plaintext
25 lines
747 B
Plaintext
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
plugins {
|
|
id("com.github.johnrengelman.shadow")
|
|
}
|
|
|
|
// Shade and relocate adventure in an extra module, so that common/the rest can directly depend on a
|
|
// relocated adventure without breaking native platform's adventure usage with project wide relocation
|
|
tasks {
|
|
withType<ShadowJar> {
|
|
relocate("net.kyori", "com.viaversion.viaversion.libs.kyori")
|
|
}
|
|
getByName("build") {
|
|
dependsOn(withType<ShadowJar>())
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(libs.bundles.adventure) {
|
|
exclude("org.checkerframework")
|
|
exclude("net.kyori", "adventure-api")
|
|
exclude("net.kyori", "adventure-bom")
|
|
exclude("com.google.code.gson", "gson")
|
|
}
|
|
} |