From 4b6181cd1d5c104957dcdb7d8519fb6175bd230b Mon Sep 17 00:00:00 2001 From: James Kettle Date: Mon, 28 Jan 2019 08:54:38 +0000 Subject: [PATCH] Fix standalone jar --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index d0a042d..fb65198 100644 --- a/build.gradle +++ b/build.gradle @@ -39,6 +39,11 @@ dependencies { } task fatJar(type: Jar) { + manifest { + attributes('Class-Path': configurations.compile.collect { it.getName() }.join(' '), + 'Main-Class': 'burp.Fast_httpKt' + ) + } baseName = project.name + '-all' from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } with jar