2019-06-14 23:28:48 -07:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "build",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "./gradlew build",
|
2019-07-13 00:19:54 -07:00
|
|
|
"dependsOn": [
|
|
|
|
"clean"
|
|
|
|
],
|
2019-06-14 23:28:48 -07:00
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
2021-07-30 18:38:40 -07:00
|
|
|
{
|
|
|
|
"label": "createTestLauncherDir",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "./gradlew createTestLauncherDir",
|
2022-06-10 01:18:22 -07:00
|
|
|
"problemMatcher": [],
|
|
|
|
"presentation": {
|
|
|
|
"reveal": "silent",
|
|
|
|
"revealProblems": "onProblem",
|
|
|
|
"close": true
|
|
|
|
}
|
2021-07-30 18:38:40 -07:00
|
|
|
},
|
2019-07-13 00:19:54 -07:00
|
|
|
{
|
|
|
|
"label": "generateTemplatePot",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "./gradlew generatePots",
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
2019-07-17 06:46:52 -07:00
|
|
|
{
|
|
|
|
"label": "checkForDependencyUpdates",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "./gradlew dependencyUpdates",
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
2019-06-14 23:28:48 -07:00
|
|
|
{
|
|
|
|
"label": "clean",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "./gradlew clean",
|
|
|
|
"group": "build"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "test",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "./gradlew test",
|
|
|
|
"group": {
|
|
|
|
"kind": "test",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|