16 lines
336 B
Text
16 lines
336 B
Text
plugins {
|
|
`config-kotlin`
|
|
`config-publish`
|
|
}
|
|
|
|
dependencies {
|
|
shade(projects.nuggetLib)
|
|
implementation(libs.bundles.kotson)
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins.all {
|
|
description = "Gradle plugin for developing Paper derivatives"
|
|
implementationClass = "io.papermc.paperweight.patcher.PaperweightPatcher"
|
|
}
|
|
}
|