upgrade doip-sdk

This commit is contained in:
CaiHQ
2022-01-04 10:43:53 +08:00
parent 5fb99f473a
commit afad80ee2b
25 changed files with 363 additions and 697 deletions

View File

@@ -1,5 +1,6 @@
plugins {
id 'java'
id 'java-library'
id 'application'
}
@@ -25,19 +26,19 @@ sourceSets {
}
dependencies {
implementation project(":common")
implementation project(":mockjava")
api project(":common")
api project(":mockjava")
implementation 'org.apache.commons:commons-lang3:3.0'
implementation 'com.atlassian.commonmark:commonmark:0.17.0'
implementation 'com.idealista:format-preserving-encryption:1.0.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
implementation 'com.sun.mail:javax.mail:1.6.2'
implementation 'org.apache.commons:commons-math3:3.6.1'
implementation 'org.codehaus.groovy:groovy-all:3.0.8'
implementation 'org.jsoup:jsoup:1.14.2'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation fileTree(dir: 'lib', include: '*.jar')
implementation 'io.grpc:grpc-all:1.41.0'
implementation 'org.jsoup:jsoup:1.14.2'
implementation 'com.sun.mail:javax.mail:1.6.2'
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
api fileTree(dir: 'lib', include: '*.jar')
testImplementation 'junit:junit:4.13.2'
}