mirror of https://github.com/rusefi/rusefi-1.git
26 lines
928 B
Groovy
26 lines
928 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
apply from: '../../android/dependencies.gradle'
|
|
|
|
configurations {
|
|
all*.exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.javaxJson
|
|
implementation project(':inifile')
|
|
implementation project(':logging-api')
|
|
implementation project(':shared_io')
|
|
|
|
implementation libs.annotations
|
|
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.6.2'
|
|
implementation group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
|
|
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
|
|
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.12'
|
|
|
|
// junit 4.13 does not mix well with httpclient :(
|
|
testImplementation group: 'junit', name: 'junit', version: '4.8.2'
|
|
testImplementation group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
|
|
} |