2021-10-17 14:32:36 +00:00
|
|
|
import org.gradle.api.Project
|
|
|
|
import org.gradle.kotlin.dsl.apply
|
|
|
|
import org.gradle.kotlin.dsl.dependencies
|
|
|
|
|
|
|
|
// For specific version pinning, see
|
|
|
|
// https://papermc.io/repo/service/rest/repository/browse/maven-public/io/papermc/paper/dev-bundle/
|
2021-11-29 23:16:19 +00:00
|
|
|
fun Project.applyPaperweightAdapterConfiguration() {
|
2021-10-17 14:32:36 +00:00
|
|
|
applyCommonConfiguration()
|
|
|
|
apply(plugin = "java-library")
|
|
|
|
applyCommonJavaConfiguration(
|
|
|
|
sourcesJar = true,
|
|
|
|
banSlf4j = false,
|
|
|
|
)
|
|
|
|
apply(plugin = "io.papermc.paperweight.userdev")
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
"implementation"(project(":worldedit-bukkit"))
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named("assemble") {
|
|
|
|
dependsOn("reobfJar")
|
|
|
|
}
|
|
|
|
}
|