diff --git a/Projekte/monopoly/client/build.gradle b/Projekte/monopoly/client/build.gradle index 85ddd4b..02d8ae9 100644 --- a/Projekte/monopoly/client/build.gradle +++ b/Projekte/monopoly/client/build.gradle @@ -1,5 +1,6 @@ plugins { id 'buildlogic.jme-application-conventions' + id 'com.github.johnrengelman.shadow' version '8.1.1' } description = 'Monopoly Client' @@ -26,3 +27,12 @@ application { mainClass = 'pp.monopoly.client.MonopolyApp' applicationName = 'monopoly' } + +shadowJar { + manifest { + attributes( + 'Main-Class': 'pp.monopoly.client.MonopolyApp' + ) + } +} +