2022-07-28 13:41:34 -07:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
2023-05-30 19:02:22 -07:00
|
|
|
id 'com.github.johnrengelman.shadow' version '7.1.2'
|
2022-07-28 13:41:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
apply from: '../../android/dependencies.gradle'
|
|
|
|
|
|
|
|
dependencies {
|
2022-10-15 11:36:41 -07:00
|
|
|
api project(':core_ui')
|
2022-10-15 11:53:00 -07:00
|
|
|
api project(':shared_ui')
|
2022-07-28 13:41:34 -07:00
|
|
|
api project(':ecu_io')
|
|
|
|
api project(':inifile')
|
|
|
|
api project(':ts_plugin_launcher')
|
2022-10-15 15:59:17 -07:00
|
|
|
testImplementation global_libs.mockito
|
2022-07-28 13:41:34 -07:00
|
|
|
testImplementation testFixtures( project(':ecu_io'))
|
|
|
|
implementation files('../ts_plugin_launcher/lib/TunerStudioPluginAPI.jar')
|
|
|
|
}
|