2020-07-02 18:20:52 -07:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
2020-07-12 20:45:40 -07:00
|
|
|
apply from: '../../android/dependencies.gradle'
|
|
|
|
|
2020-07-12 15:53:53 -07:00
|
|
|
configurations {
|
2020-07-12 16:50:34 -07:00
|
|
|
all*.exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
2020-07-12 15:53:53 -07:00
|
|
|
}
|
|
|
|
|
2020-07-02 18:20:52 -07:00
|
|
|
dependencies {
|
2020-07-02 19:22:50 -07:00
|
|
|
implementation project(':inifile')
|
|
|
|
implementation project(':models')
|
2020-07-02 18:20:52 -07:00
|
|
|
implementation project(':logging-api')
|
2020-07-02 19:22:50 -07:00
|
|
|
|
2020-07-12 20:51:54 -07:00
|
|
|
implementation libs.annotations
|
2020-07-02 19:22:50 -07:00
|
|
|
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.6.2'
|
|
|
|
implementation group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
|
2020-07-12 15:53:53 -07:00
|
|
|
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
|
|
|
|
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.12'
|
2020-07-02 19:22:50 -07:00
|
|
|
|
2020-07-12 20:45:40 -07:00
|
|
|
testImplementation libs.junit
|
2020-07-02 18:20:52 -07:00
|
|
|
}
|