-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update plugins, tasks, build.yml and branding
Update plantuml.jar on build Add tasks for bash, pwsh, powershell and cmd (all on path) Minor branding fixes Remove groovy lint plugin, add vscode.groovy
- Loading branch information
Showing
8 changed files
with
48 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,42 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "echo tasks.json", | ||
"type": "shell", | ||
"command": "echo Hello" | ||
} | ||
] | ||
{ | ||
"label": "Bash (on PATH)", | ||
"type": "shell", | ||
"command": "bash", | ||
"problemMatcher": [], | ||
"presentation": { | ||
"reveal": "always", | ||
"focus": true | ||
} | ||
},{ | ||
"label": "PowerShell Core (on PATH)", | ||
"type": "shell", | ||
"command": "pwsh", | ||
"problemMatcher": [], | ||
"presentation": { | ||
"reveal": "always", | ||
"focus": true | ||
} | ||
},{ | ||
"label": "Windows PowerShell (on PATH)", | ||
"type": "shell", | ||
"command": "powershell", | ||
"problemMatcher": [], | ||
"presentation": { | ||
"reveal": "always", | ||
"focus": true | ||
} | ||
},{ | ||
"label": "Command Prompt (on PATH)", | ||
"type": "shell", | ||
"command": "cmd", | ||
"problemMatcher": [], | ||
"presentation": { | ||
"reveal": "always", | ||
"focus": true | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters