diff --git a/java_console/build.xml b/java_console/build.xml
index 1ee603a8e7..bcbf1032bb 100644
--- a/java_console/build.xml
+++ b/java_console/build.xml
@@ -59,20 +59,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -88,7 +74,6 @@
-
@@ -157,7 +142,7 @@
-
+
diff --git a/java_console/ui/build.gradle b/java_console/ui/build.gradle
index 56df942f6d..8266951566 100644
--- a/java_console/ui/build.gradle
+++ b/java_console/ui/build.gradle
@@ -1,5 +1,6 @@
plugins {
id 'java'
+ id 'com.github.johnrengelman.shadow' version '6.1.0'
}
dependencies {
@@ -18,6 +19,10 @@ dependencies {
testImplementation testFixtures(project(':ecu_io'))
}
-//compileJava {
-// dependsOn(':config_definition:generateGrammarSource')
-//}
+shadowJar {
+ manifest {
+ attributes(
+ 'Main-Class': 'com.rusefi.Launcher'
+ )
+ }
+}
\ No newline at end of file