mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-01 10:27:11 +00:00
24 lines
668 B
Kotlin
24 lines
668 B
Kotlin
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/
|
|
fun Project.applyPaperweightAdapterConfiguration() {
|
|
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")
|
|
}
|
|
}
|