19 lines
534 B
JSON
19 lines
534 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "start app server",
|
|
"type": "shell",
|
|
"command": "mvn jetty:run -pl *-server -am -Denv=dev",
|
|
"group": "test"
|
|
},
|
|
{
|
|
"label": "start gwt code server",
|
|
"type": "shell",
|
|
"command": "mvn gwt:codeserver -pl *-client -am",
|
|
"group": "test"
|
|
}
|
|
]
|
|
} |