This commit is contained in:
2025-02-23 15:46:50 +08:00
parent 6468d6d963
commit 9175c5d291

View File

@@ -32,3 +32,13 @@ kotlin {
tasks.build {
dependsOn("shadowJar")
}
tasks.named ("shadowJar") {
doLast {
copy {
from("build/libs")
include("*-all.jar")
into("run/plugins")
}
}
}