From da0b7990251db599f087253630b4ecb96f1c423e Mon Sep 17 00:00:00 2001 From: rusefillc Date: Thu, 14 Jul 2022 01:43:17 -0400 Subject: [PATCH] https://rusefi.com/forum/viewtopic.php?f=5&t=2373 fixing plugin launcher - dependencies were broken --- java_console/autoupdate/build.gradle | 14 ++++++-------- .../com/rusefi/ts_plugin/TsPluginLauncher.java | 2 +- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/java_console/autoupdate/build.gradle b/java_console/autoupdate/build.gradle index 8b85bf87aa..250e90c60c 100644 --- a/java_console/autoupdate/build.gradle +++ b/java_console/autoupdate/build.gradle @@ -9,15 +9,13 @@ configurations { } dependencies { - implementation libs.javaxJson - api project(':inifile') - implementation project(':logging-api') - implementation project(':shared_io') + api libs.javaxJson + api project(':logging-api') + api project(':shared_io') - implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.6.2' - implementation group: 'net.jcip', name: 'jcip-annotations', version: '1.0' - implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1' - implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.12' + api group: 'net.jcip', name: 'jcip-annotations', version: '1.0' + api group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1' + api group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.12' // junit 4.13 does not mix well with httpclient :( testImplementation group: 'junit', name: 'junit', version: '4.8.2' diff --git a/java_tools/ts_plugin_launcher/src/main/java/com/rusefi/ts_plugin/TsPluginLauncher.java b/java_tools/ts_plugin_launcher/src/main/java/com/rusefi/ts_plugin/TsPluginLauncher.java index 0ddaf2bee6..086438c20a 100644 --- a/java_tools/ts_plugin_launcher/src/main/java/com/rusefi/ts_plugin/TsPluginLauncher.java +++ b/java_tools/ts_plugin_launcher/src/main/java/com/rusefi/ts_plugin/TsPluginLauncher.java @@ -17,7 +17,7 @@ import javax.swing.*; */ public class TsPluginLauncher implements ApplicationPlugin { public static final int BUILD_VERSION = 4; - static final String VERSION = "2021.alpha." + BUILD_VERSION; + static final String VERSION = "2022.alpha." + BUILD_VERSION; private static final String HELP_URL = "https://github.com/rusefi/rusefi/wiki/TS-Plugin"; private final JPanel content = new JPanel(new VerticalFlowLayout());