23 lines
714 B
Groovy
23 lines
714 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
apply from: '../../android/dependencies.gradle'
|
|
|
|
configurations {
|
|
all*.exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':inifile')
|
|
implementation project(':models')
|
|
implementation project(':logging-api')
|
|
|
|
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'
|
|
|
|
testImplementation libs.junit
|
|
} |