From 57e03c96e3257f3d8b535ff5788d0a21575c8a99 Mon Sep 17 00:00:00 2001 From: Matthias Stein Date: Thu, 21 Jan 2021 12:10:20 +0100 Subject: [PATCH] Add tasks.json --- .vscode/tasks.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..3c0ea10 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,26 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Run Jetty Server", + "type": "shell", + "command": "mvn clean jetty:run -Pwatch-all", + "group": "build" + }, + { + "label": "Run stand-alone Jetty Server", + "type": "shell", + "command": "mvn clean jetty:run -P'watch-all,include-mapapps-deps'", + "group": "build" + }, + { + "label": "Install", + "type": "shell", + "command": "mvn clean install -Pcompress", + "group": { + "kind": "build", + "isDefault": true + } + } + ] +}