From d3636d3742d8c470451e3a366d1d4237e11f6486 Mon Sep 17 00:00:00 2001 From: Matthias Stein Date: Thu, 23 Mar 2023 16:32:46 +0100 Subject: [PATCH] Update tasks.json --- .vscode/tasks.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 93297ba..9fdde88 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -10,19 +10,19 @@ { "label": "Run HTTP Server", "type": "shell", - "command": "mvn jetty:run -Denv=dev '-Dlocal.configfile=./build.properties'", + "command": "mvn clean jetty:run -Denv=dev '-Dlocal.configfile=./build.properties'", "group": "build" }, { "label": "Run stand-alone HTTP Server", "type": "shell", - "command": "mvn jetty:run -Denv=dev '-Dlocal.configfile=./build.properties' -Pinclude-mapapps-deps", + "command": "mvn clean jetty:run -Denv=dev '-Dlocal.configfile=./build.properties' -Pinclude-mapapps-deps", "group": "build" }, { "label": "Compress", "type": "shell", - "command": "mvn install -P compress", + "command": "mvn clean install -P compress", "group": "build" }, {