From d614429b3c9d959a35644a0e6a6569f5e7d118e7 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Tue, 21 Feb 2023 16:27:35 +0100 Subject: [PATCH] Single binary again --- shells/objectgericht-project.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/shells/objectgericht-project.nix b/shells/objectgericht-project.nix index 4b717f12..551a3e92 100644 --- a/shells/objectgericht-project.nix +++ b/shells/objectgericht-project.nix @@ -13,16 +13,10 @@ ''; } { - name = "client"; + name = "start"; category = "development"; - help = "Run client"; - command = "mvn package && java -cp target/dominion-1.0-SNAPSHOT.jar:repo/be/ugent/objprog/commhub/1.0/commhub-1.0.jar be.ugent.dominion.Main client"; - } - { - name = "server"; - category = "development"; - help = "Run server"; - command = "mvn package && java -cp target/dominion-1.0-SNAPSHOT.jar:repo/be/ugent/objprog/commhub/1.0/commhub-1.0.jar be.ugent.dominion.Main server"; + help = "Run game"; + command = "mvn javafx:run"; } { name = "clean";