Ant should go, gradle is the unified way #4371

This commit is contained in:
rusefillc 2022-07-28 16:41:34 -04:00
parent c9bc396011
commit a076f679b4
3 changed files with 21 additions and 5 deletions

View File

@ -28,4 +28,6 @@ project(':bin2header').projectDir = new File('../java_tools/bin2header')
include ':config_definition'
project(':config_definition').projectDir = new File('../java_tools/configuration_definition')
include ':ts_plugin_launcher'
project(':ts_plugin_launcher').projectDir = new File('../java_tools/ts_plugin_launcher')
project(':ts_plugin_launcher').projectDir = new File('../java_tools/ts_plugin_launcher')
include ':ts_plugin'
project(':ts_plugin').projectDir = new File('../java_tools/ts_plugin')

View File

@ -0,0 +1,17 @@
plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
apply from: '../../android/dependencies.gradle'
dependencies {
api project(':ecu_io')
api project(':shared_ui')
api project(':inifile')
api project(':ts_plugin_launcher')
api project(':ts_plugin_launcher')
testImplementation libs.mockito
testImplementation testFixtures( project(':ecu_io'))
implementation files('../ts_plugin_launcher/lib/TunerStudioPluginAPI.jar')
}

View File

@ -7,9 +7,6 @@ import com.rusefi.ui.util.FrameHelper;
*/
public class RemoteTabSandbox {
public static void main(String[] args) {
RemoteTab.Listener listener = () -> {
};
new FrameHelper().showFrame(new RemoteTab(listener).getContent());
new FrameHelper().showFrame(new RemoteTab().getContent());
}
}