rusefi/java_console/io/build.gradle

15 lines
476 B
Groovy
Raw Normal View History

2020-07-02 18:20:52 -07:00
plugins {
id 'java'
}
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'
testImplementation group: 'junit', name: 'junit', version: '4.13'
2020-07-02 18:20:52 -07:00
}