[vscode-spring-cli] Added boot add command support

This commit is contained in:
aboyko
2024-01-17 19:21:07 -05:00
parent ce45532748
commit edf6396058
5 changed files with 90 additions and 11 deletions

View File

@@ -25,10 +25,31 @@
"onStartupFinished"
],
"contributes": {
"menus": {
"editor/context": [
{
"when": "resourceFilename == pom.xml",
"command": "vscode-spring-cli.boot.add",
"group": "Spring-CLI"
}
],
"explorer/context": [
{
"when": "resourceFilename == pom.xml",
"command": "vscode-spring-cli.boot.add",
"group": "Spring-CLI"
}
]
},
"commands": [
{
"command": "vscode-spring-cli.new-project",
"title": "New Project",
"command": "vscode-spring-cli.boot.new",
"title": "New Boot Project",
"category": "Spring CLI"
},
{
"command": "vscode-spring-cli.boot.add",
"title": "Add to Boot Project",
"category": "Spring CLI"
}
]