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-17 17:58:18 -07:00
|
|
|
implementation libs.javaxJson
|
2020-07-02 19:22:50 -07:00
|
|
|
implementation project(':inifile')
|
2020-08-14 17:51:06 -07:00
|
|
|
implementation project(':autoupdate')
|
2020-07-02 19:22:50 -07:00
|
|
|
implementation project(':models')
|
2020-07-02 18:20:52 -07:00
|
|
|
implementation project(':logging-api')
|
2020-07-22 14:39:15 -07:00
|
|
|
implementation project(':shared_io')
|
2021-09-26 15:20:28 -07:00
|
|
|
implementation project(':logging')
|
2020-07-02 19:22:50 -07:00
|
|
|
|
2020-07-12 20:51:54 -07:00
|
|
|
implementation libs.annotations
|
2022-02-12 04:14:38 -08:00
|
|
|
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.9.0'
|
2020-07-02 19:22:50 -07:00
|
|
|
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 21:05:00 -07:00
|
|
|
// junit 4.13 does not mix well with httpclient :(
|
|
|
|
testImplementation group: 'junit', name: 'junit', version: '4.8.2'
|
2020-08-12 20:11:54 -07:00
|
|
|
testImplementation group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
|
2020-07-02 18:20:52 -07:00
|
|
|
}
|