fixing plugin launcher - dependencies were broken
This commit is contained in:
parent
4d16843eed
commit
da0b799025
|
@ -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'
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue