2020-08-14 17:46:36 -07:00
|
|
|
plugins {
|
2022-03-15 11:24:54 -07:00
|
|
|
id 'java-library'
|
2020-08-14 17:46:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
apply from: '../../android/dependencies.gradle'
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
all*.exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-07-13 22:43:17 -07:00
|
|
|
api libs.javaxJson
|
|
|
|
api project(':logging-api')
|
2022-10-15 11:48:42 -07:00
|
|
|
api project(':core_ui')
|
|
|
|
api project(':core_io')
|
2020-08-14 17:46:36 -07:00
|
|
|
|
2022-07-13 22:43:17 -07:00
|
|
|
api group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
|
2022-10-15 15:13:04 -07:00
|
|
|
api global_libs.json
|
2022-07-13 23:32:21 -07:00
|
|
|
// not 'api' since Android would use own implementation
|
2022-07-28 12:41:49 -07:00
|
|
|
implementation ts_plugin_libs.httpclient
|
2020-08-14 17:46:36 -07:00
|
|
|
|
|
|
|
// junit 4.13 does not mix well with httpclient :(
|
|
|
|
testImplementation group: 'junit', name: 'junit', version: '4.8.2'
|
2022-07-28 13:34:02 -07:00
|
|
|
testImplementation libs.mockito
|
2020-08-14 17:46:36 -07:00
|
|
|
}
|