Add utility to ogprog shell

This commit is contained in:
Charlotte Van Petegem 2023-02-15 14:08:54 +01:00
parent 97eabe4896
commit d4464ddf81
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -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";
}
];
}