rusefi-1/java_console/io/build.gradle

21 lines
753 B
Groovy
Raw Normal View History

2020-07-02 18:20:52 -07:00
plugins {
id 'java'
}
2020-07-12 15:53:53 -07:00
configurations {
2020-07-12 16:20:38 -07:00
// compile.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
implementation group: 'org.jetbrains', name: 'annotations', version: '16.0.1'
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 16:20:38 -07:00
testImplementation group: 'junit', name: 'junit', version: '4.8.2'
2020-07-02 18:20:52 -07:00
}