25 lines
606 B
JSON
25 lines
606 B
JSON
|
{
|
||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||
|
// for the documentation about the tasks.json format
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "verify",
|
||
|
"type": "shell",
|
||
|
"command": "mvn -B verify",
|
||
|
"group": "build"
|
||
|
},
|
||
|
{
|
||
|
"label": "test",
|
||
|
"type": "shell",
|
||
|
"command": "mvn -B test",
|
||
|
"group": "test"
|
||
|
},
|
||
|
{
|
||
|
"label": "package",
|
||
|
"type": "shell",
|
||
|
"command": "mvn package",
|
||
|
"group": "build"
|
||
|
}
|
||
|
]
|
||
|
}
|