Skip to content

Instantly share code, notes, and snippets.

@prestonmcgowan
Last active May 22, 2019 20:53
Show Gist options
  • Save prestonmcgowan/84d8560e604a64a93abd805e48d7404c to your computer and use it in GitHub Desktop.
Save prestonmcgowan/84d8560e604a64a93abd805e48d7404c to your computer and use it in GitHub Desktop.
Visual Studio Code: Gradle Tasks
{
"_comment": [
"See https://go.microsoft.com/fwlink/?LinkId=733558",
"for the documentation about the tasks.json format"
],
"version": "2.0.0",
"tasks": [
{
"label": "mlDeploy",
"type": "shell",
"command": "gradle",
"args": [
"mlDeploy"
]
},
{
"label": "gradle",
"type": "shell",
"command": "gradle ${input:gradleTask}"
}
],
"inputs": [
{
"type": "promptString",
"id": "gradleTask",
"default": "tasks",
"description": "Which gradle task should be executed?"
}
]
}
@prestonmcgowan
Copy link
Author

vscode-task-gradle-mldeploy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment