support interface

support ResultSchema
This commit is contained in:
CaiHQ
2023-06-06 17:54:57 +08:00
parent 76f564c777
commit d76f816e92
10 changed files with 132 additions and 26 deletions

View File

@@ -6,7 +6,7 @@ plugins {
}
group = "org.bdware.sc"
version = "1.8.9"
version = "1.9.0"
tasks.withType(JavaCompile) {
// options.compilerArgs << '-Xlint:none'
// options.compilerArgs << '-Xlint:deprecation' << "-Werror"
@@ -48,8 +48,8 @@ dependencies {
implementation 'com.sun.mail:javax.mail:1.6.2'
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
implementation 'org.bdware.bdcontract:sdk-java:1.0.2'
implementation 'org.bdware.doip:doip-audit-tool:1.2.6'
implementation 'org.bdware.doip:doip-sdk:1.4.2'
implementation 'org.bdware.doip:doip-audit-tool:1.2.9'
implementation 'org.bdware.doip:doip-sdk:1.4.4'
implementation fileTree(dir: 'lib', include: '*.jar')
testImplementation 'junit:junit:4.13.2'
}
@@ -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)
}