Update plugins

This commit is contained in:
okx-code
2024-05-09 00:56:31 +01:00
parent 484f59d4a2
commit be5efbfa6c
22 changed files with 2 additions and 2 deletions

View File

@@ -103,13 +103,13 @@ allprojects {
// Copy the built jar into the paper container, removing any jars from previous versions
tasks.register("copyPaper", Copy::class) {
doFirst {
delete(fileTree("../../containers/paper/plugins") {
delete(fileTree("../../ansible/files/paper-plugins") {
include(project.name + "-*.jar")
})
}
dependsOn("build")
from(tasks.findByPath("reobfJar")!!.outputs.files)
into("../../containers/paper/plugins")
into("../../ansible/files/paper-plugins")
}
}