rusefi/java_console/autoupdate/build.gradle

25 lines
664 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(':core_ui')
api project(':core_io')
api group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
api global_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 global_libs.mockito
}