2021-06-14 00:19:58 -07:00
|
|
|
plugins {
|
|
|
|
`config-kotlin`
|
|
|
|
`config-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-10-15 02:34:16 -07:00
|
|
|
shade(projects.nuggetLib)
|
2023-11-20 16:12:08 -07:00
|
|
|
implementation(libs.bundles.kotson)
|
|
|
|
implementation(variantOf(libs.diffpatch) { classifier("all") }) {
|
2023-02-09 09:39:52 -07:00
|
|
|
isTransitive = false
|
|
|
|
}
|
2021-06-14 00:19:58 -07:00
|
|
|
}
|
2023-02-15 12:03:05 -07:00
|
|
|
|
|
|
|
gradlePlugin {
|
|
|
|
plugins.all {
|
2023-02-15 12:34:40 -07:00
|
|
|
description = "Gradle plugin for developing Paper plugins using server internals"
|
2023-02-15 12:03:05 -07:00
|
|
|
implementationClass = "io.papermc.paperweight.userdev.PaperweightUser"
|
|
|
|
}
|
|
|
|
}
|