Update file build.gradle

This commit is contained in:
Kewbit 2024-11-17 19:18:29 +00:00
parent 72f78783c4
commit 78ab0030fd

View file

@ -788,8 +788,11 @@ configure(project(':statsnode')) {
configure(project(':daemon')) { configure(project(':daemon')) {
apply plugin: 'com.github.johnrengelman.shadow' apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'application'
mainClassName = 'haveno.daemon.app.HavenoDaemonMain' application {
mainClass = 'haveno.daemon.app.HavenoDaemonMain'
}
dependencies { dependencies {
implementation project(':proto') implementation project(':proto')
@ -849,6 +852,7 @@ configure(project(':daemon')) {
} }
} }
configure(project(':inventory')) { configure(project(':inventory')) {
apply plugin: 'com.github.johnrengelman.shadow' apply plugin: 'com.github.johnrengelman.shadow'