Update Configurate to 4.1.2 and include Configurate 3 (#1157)
This commit is contained in:
@@ -85,6 +85,11 @@ tasks {
|
||||
exclude("org/checkerframework/checker/**")
|
||||
|
||||
relocate("org.bstats", "com.velocitypowered.proxy.bstats")
|
||||
|
||||
// Include Configurate 3
|
||||
val configurateBuildTask = project(":deprecated-configurate3").tasks.named("shadowJar")
|
||||
dependsOn(configurateBuildTask)
|
||||
from(zipTree(configurateBuildTask.map { it.outputs.files.singleFile }))
|
||||
}
|
||||
}
|
||||
|
||||
|
13
proxy/deprecated/configurate3/build.gradle.kts
Normal file
13
proxy/deprecated/configurate3/build.gradle.kts
Normal file
@@ -0,0 +1,13 @@
|
||||
plugins {
|
||||
alias(libs.plugins.shadow)
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(libs.bundles.configurate3)
|
||||
}
|
||||
|
||||
tasks.shadowJar {
|
||||
exclude("com/google/**")
|
||||
exclude("com/typesafe/**")
|
||||
exclude("org/yaml/**")
|
||||
}
|
Reference in New Issue
Block a user