19 lines
457 B
Text
19 lines
457 B
Text
plugins {
|
|
`config-kotlin`
|
|
`config-publish`
|
|
}
|
|
|
|
dependencies {
|
|
shade(projects.nuggetLib)
|
|
implementation(libs.bundles.kotson)
|
|
implementation(variantOf(libs.diffpatch) { classifier("all") }) {
|
|
isTransitive = false
|
|
}
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins.all {
|
|
description = "Gradle plugin for developing Paper plugins using server internals"
|
|
implementationClass = "io.papermc.paperweight.userdev.PaperweightUser"
|
|
}
|
|
}
|