support access annotation with DOOP

This commit is contained in:
CaiHQ
2023-11-20 15:31:56 +08:00
parent 46b67d200e
commit 79cd1d1781
3 changed files with 24 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ plugins {
apply from: '../spotless.gradle'
group = "org.bdware.sc"
version = "1.9.91"
version = "1.9.95"
tasks.withType(JavaCompile) {
// options.compilerArgs << '-Xlint:none'
// options.compilerArgs << '-Xlint:deprecation' << "-Werror"
@@ -70,8 +70,8 @@ jar {
// uncomment this when publish,
// while develop at local use "false"
configurations.runtimeClasspath.filter {
it.getAbsolutePath().contains("/lib/")
// false
it.getAbsolutePath().contains("/lib/")
// false
}.collect {
it.isDirectory() ? it : zipTree(it)
}