17 lines
488 B
Groovy
17 lines
488 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'com.github.johnrengelman.shadow' version '6.1.0'
|
|
}
|
|
|
|
apply from: '../../android/dependencies.gradle'
|
|
|
|
dependencies {
|
|
api project(':core_ui')
|
|
api project(':shared_ui')
|
|
api project(':ecu_io')
|
|
api project(':inifile')
|
|
api project(':ts_plugin_launcher')
|
|
testImplementation global_libs.mockito
|
|
testImplementation testFixtures( project(':ecu_io'))
|
|
implementation files('../ts_plugin_launcher/lib/TunerStudioPluginAPI.jar')
|
|
} |