rusefi-1/java_console/models/build.gradle

15 lines
326 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-08-15 17:46:52 -07:00
implementation project(':autoupdate')
implementation project(':inifile')
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
}