fix doop before handler

This commit is contained in:
CaiHQ
2023-05-20 10:03:42 +08:00
parent fd1690c97b
commit 76f564c777
3 changed files with 13 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ plugins {
}
group = "org.bdware.sc"
version = "1.8.7"
version = "1.8.9"
tasks.withType(JavaCompile) {
// options.compilerArgs << '-Xlint:none'
// options.compilerArgs << '-Xlint:deprecation' << "-Werror"
@@ -68,7 +68,7 @@ jar {
// while develop at local use "false"
configurations.runtimeClasspath.filter {
it.getAbsolutePath().contains("/lib/")
// false
// false
}.collect {
it.isDirectory() ? it : zipTree(it)
}