From 78ab0030fd3aef8cc3a3a439bcabf86020db4b12 Mon Sep 17 00:00:00 2001 From: Kewbit Date: Sun, 17 Nov 2024 19:18:29 +0000 Subject: [PATCH] Update file build.gradle --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 92c0bf25..25be9c30 100644 --- a/build.gradle +++ b/build.gradle @@ -788,8 +788,11 @@ configure(project(':statsnode')) { configure(project(':daemon')) { apply plugin: 'com.github.johnrengelman.shadow' + apply plugin: 'application' - mainClassName = 'haveno.daemon.app.HavenoDaemonMain' + application { + mainClass = 'haveno.daemon.app.HavenoDaemonMain' + } dependencies { implementation project(':proto') @@ -849,6 +852,7 @@ configure(project(':daemon')) { } } + configure(project(':inventory')) { apply plugin: 'com.github.johnrengelman.shadow'