24 lines
624 B
Groovy
24 lines
624 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
apply from: '../../android/dependencies.gradle'
|
|
|
|
configurations {
|
|
all*.exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
}
|
|
|
|
dependencies {
|
|
api libs.javaxJson
|
|
api project(':logging-api')
|
|
api project(':shared_io')
|
|
|
|
api group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
|
|
api libs.json
|
|
// not 'api' since Android would use own implementation
|
|
implementation ts_plugin_libs.httpclient
|
|
|
|
// junit 4.13 does not mix well with httpclient :(
|
|
testImplementation group: 'junit', name: 'junit', version: '4.8.2'
|
|
testImplementation libs.mockito
|
|
} |