Skip to content

Commit

Permalink
Add tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasstein committed Jan 21, 2021
1 parent 57e3655 commit 57e03c9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}

0 comments on commit 57e03c9

Please sign in to comment.