34 lines
1.0 KiB
Groovy
34 lines
1.0 KiB
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'java-test-fixtures'
|
|
}
|
|
|
|
apply from: '../../android/dependencies.gradle'
|
|
|
|
configurations {
|
|
all*.exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
}
|
|
|
|
tasks.withType(Test) {
|
|
systemProperty "java.library.path", "../../unit_tests/build"
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.javaxJson
|
|
implementation project(':inifile')
|
|
implementation project(':autoupdate')
|
|
implementation project(':models')
|
|
implementation project(':logging-api')
|
|
implementation project(':shared_io')
|
|
implementation project(':logging')
|
|
|
|
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.9.2'
|
|
implementation group: 'tel.schich', name: 'javacan-core', version: '3.2.0'
|
|
implementation group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
|
|
implementation libs.json
|
|
implementation ts_plugin_libs.httpclient
|
|
|
|
// junit 4.13 does not mix well with httpclient :(
|
|
testImplementation group: 'junit', name: 'junit', version: '4.8.2'
|
|
testFixturesImplementation libs.mockito
|
|
} |