rusefi-1/java_console/models/build.gradle

13 lines
245 B
Groovy
Raw Normal View History

2020-07-02 19:22:50 -07:00
plugins {
id 'java'
}
2020-07-12 20:51:54 -07:00
apply from: '../../android/dependencies.gradle'
2020-07-02 19:22:50 -07:00
dependencies {
implementation project(':inifile')
implementation project(':logging-api')
2020-07-12 20:51:54 -07:00
implementation libs.annotations
2020-07-02 19:22:50 -07:00
2020-07-12 20:51:54 -07:00
testImplementation libs.junit
2020-07-02 19:22:50 -07:00
}