2020-07-02 18:20:52 -07:00
|
|
|
plugins {
|
2022-07-28 12:41:49 -07:00
|
|
|
id 'java-library'
|
2022-07-28 13:24:20 -07:00
|
|
|
id 'java-test-fixtures'
|
2020-07-02 18:20:52 -07:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-03-12 21:25:10 -08:00
|
|
|
tasks.withType(Test) {
|
|
|
|
systemProperty "java.library.path", "../../unit_tests/build"
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2022-06-29 13:32:31 -07:00
|
|
|
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.9.2'
|
2022-05-03 13:41:24 -07:00
|
|
|
implementation group: 'tel.schich', name: 'javacan-core', version: '3.2.0'
|
2020-07-02 19:22:50 -07:00
|
|
|
implementation group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
|
2022-07-28 12:41:49 -07:00
|
|
|
implementation libs.json
|
|
|
|
implementation ts_plugin_libs.httpclient
|
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'
|
2022-07-28 13:34:02 -07:00
|
|
|
testFixturesImplementation libs.mockito
|
2020-07-02 18:20:52 -07:00
|
|
|
}
|