diff --git a/shells/objectgericht-project.nix b/shells/objectgericht-project.nix index a1889f9d..83f1e525 100644 --- a/shells/objectgericht-project.nix +++ b/shells/objectgericht-project.nix @@ -6,11 +6,23 @@ commands = [ { name = "jdtls"; - category = "language server"; + category = "development"; help = "Start jdt-language-server with configured workspace location"; command = '' ${pkgs.jdt-language-server}/bin/jdt-language-server -data "$PRJ_DATA_DIR/workspace" ''; } + { + name = "run"; + category = "development"; + help = "Run application"; + command = "mvn javafx:run"; + } + { + name = "clean"; + category = "development"; + help = "Clean target"; + command = "mvn clean"; + } ]; }