From a26b161b29bb1ad2abe7ed8a949803df5f9d768d Mon Sep 17 00:00:00 2001 From: rusefillc Date: Thu, 14 Jul 2022 01:47:13 -0400 Subject: [PATCH] https://rusefi.com/forum/viewtopic.php?f=5&t=2373 fixing plugin launcher - dependencies were broken --- java_tools/ts_plugin_launcher/build.gradle | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/java_tools/ts_plugin_launcher/build.gradle b/java_tools/ts_plugin_launcher/build.gradle index e949622590..b642981169 100644 --- a/java_tools/ts_plugin_launcher/build.gradle +++ b/java_tools/ts_plugin_launcher/build.gradle @@ -8,16 +8,14 @@ defaultTasks 'shadowJar' apply from: '../../android/dependencies.gradle' dependencies { - testImplementation libs.junit implementation libs.annotations implementation ts_plugin_libs.httpcore implementation ts_plugin_libs.httpmime - implementation ts_plugin_libs.httpclient - // to automatically exclude transitive dependencies of these projects - shadow project(':autoupdate') - shadow project(':shared_io') + implementation project(':autoupdate') implementation ts_plugin_libs.launcher_api implementation libs.commons_logging + + testImplementation libs.junit } def TODAY = new Date().format('yyyy-MM-dd HH:mm:ss')