diff --git a/jadx-gui/build.gradle b/jadx-gui/build.gradle index 2a3074e71..3b40b4c0d 100644 --- a/jadx-gui/build.gradle +++ b/jadx-gui/build.gradle @@ -19,6 +19,15 @@ applicationDistribution.with { } } +jar { + manifest { + attributes( + "Main-Class": mainClassName, + "Class-Path": configurations.compile.collect { it.getName() }.join(' ') + ) + } +} + test { jacoco { // coveralls plugin not support multi-project