Skip to content

Commit ec6ba09

Browse files
committed
move walkthrough to extension pack since it references multiple extensions
1 parent 7f0c4a5 commit ec6ba09

File tree

8 files changed

+49
-47
lines changed

8 files changed

+49
-47
lines changed

vscode-extensions/boot-dev-pack/package.json

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,53 @@
3535
"Pivotal.vscode-spring-boot",
3636
"vscjava.vscode-spring-initializr",
3737
"vscjava.vscode-spring-boot-dashboard"
38-
]
38+
],
39+
"contributes": {
40+
"walkthroughs": [
41+
{
42+
"id": "springBootWelcome",
43+
"title": "Getting Started with Spring Boot in VS Code",
44+
"description": "An Overview of the Spring Tools in VS Code to get started and to work with existing Spring Boot projects in VS Code",
45+
"primary": true,
46+
"steps": [
47+
{
48+
"id": "new-project-using-initializr",
49+
"title": "Create a new Spring Boot project",
50+
"description": "The easiest way to create new Spring Boot projects in VS Code is to use the Spring Initializr integration. Open the command palette in VS Code, search for __Spring__ and create a new Spring Boot project from there.\n[Create New Spring Boot Project](command:spring.initializr.maven-project)",
51+
"media": {
52+
"image": "walkthroughs/spring-initializr-integration.png",
53+
"altText": "Create a new Maven-based Spring Boot project"
54+
}
55+
},
56+
{
57+
"id": "navigate-your-spring-projects",
58+
"title": "Navigate your Spring Boot projects",
59+
"description": "The Spring Tools in your VS Code installation contribute Spring-specific symbols to help you navigate your projects. All the symbols start with `@`.\nYou can navigate to the symbols using the [Outline View](command:outline.focus) of the current file, via the [Go to Symbol in Editor...](command:workbench.action.gotoSymbol) or globally via [Go to symbol in Workspace...](command:workbench.action.showAllSymbols).\nIf you start your search with an `@`, the list of symbols will show the Spring-specific symbols only.",
60+
"media": {
61+
"image": "walkthroughs/spring-symbols-navigation.png",
62+
"altText": "Go to Symbol in Workspace..."
63+
}
64+
},
65+
{
66+
"id": "run-your-spring-projects",
67+
"title": "Run your Spring Boot projects",
68+
"description": "Running your Spring Boot projects from within VS Code is simple: Open any Java source file from your project and press `Run` at the top right corner.\nThe second option is to [switch to the launch section](command:workbench.view.debug) of VS Code and start the app there.",
69+
"media": {
70+
"image": "walkthroughs/spring-run-app.png",
71+
"altText": "Run your Spring Boot app"
72+
}
73+
},
74+
{
75+
"id": "live-information-for-your-running-spring-app",
76+
"title": "Show live information from your running Spring Boot application",
77+
"description": "A unique feature of the Spring Tools is the ability to vizualize live data from your running app inplace with the source code of the running application.\n",
78+
"media": {
79+
"markdown": "walkthroughs/live-information.md",
80+
"altText": "Run your Spring Boot app"
81+
}
82+
}
83+
]
84+
}
85+
]
86+
}
3987
}
File renamed without changes.

vscode-extensions/vscode-spring-boot/package.json

Lines changed: 0 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -32,52 +32,6 @@
3232
"onLanguage:xml"
3333
],
3434
"contributes": {
35-
"walkthroughs": [
36-
{
37-
"id": "springBootWelcome",
38-
"title": "Getting Started with Spring Boot in VS Code",
39-
"description": "An Overview of the Spring Tools in VS Code to get started and to work with existing Spring Boot projects in VS Code",
40-
"primary": true,
41-
"steps": [
42-
{
43-
"id": "new-project-using-initializr",
44-
"title": "Create a new Spring Boot project",
45-
"description": "The easiest way to create new Spring Boot projects in VS Code is to use the Spring Initializr integration. Open the command palette in VS Code, search for __Spring__ and create a new Spring Boot project from there.\n[Create New Spring Boot Project](command:spring.initializr.maven-project)",
46-
"media": {
47-
"image": "walkthroughs/spring-initializr-integration.png",
48-
"altText": "Create a new Maven-based Spring Boot project"
49-
}
50-
},
51-
{
52-
"id": "navigate-your-spring-projects",
53-
"title": "Navigate your Spring Boot projects",
54-
"description": "The Spring Tools in your VS Code installation contribute Spring-specific symbols to help you navigate your projects. All the symbols start with `@`.\nYou can navigate to the symbols using the [Outline View](command:outline.focus) of the current file, via the [Go to Symbol in Editor...](command:workbench.action.gotoSymbol) or globally via [Go to symbol in Workspace...](command:workbench.action.showAllSymbols).\nIf you start your search with an `@`, the list of symbols will show the Spring-specific symbols only.",
55-
"media": {
56-
"image": "walkthroughs/spring-symbols-navigation.png",
57-
"altText": "Go to Symbol in Workspace..."
58-
}
59-
},
60-
{
61-
"id": "run-your-spring-projects",
62-
"title": "Run your Spring Boot projects",
63-
"description": "Running your Spring Boot projects from within VS Code is simple: Open any Java source file from your project and press `Run` at the top right corner.\nThe second option is to [switch to the launch section](command:workbench.view.debug) of VS Code and start the app there.",
64-
"media": {
65-
"image": "walkthroughs/spring-run-app.png",
66-
"altText": "Run your Spring Boot app"
67-
}
68-
},
69-
{
70-
"id": "live-information-for-your-running-spring-app",
71-
"title": "Show live information from your running Spring Boot application",
72-
"description": "A unique feature of the Spring Tools is the ability to vizualize live data from your running app inplace with the source code of the running application.\n",
73-
"media": {
74-
"markdown": "walkthroughs/live-information.md",
75-
"altText": "Run your Spring Boot app"
76-
}
77-
}
78-
]
79-
}
80-
],
8135
"javaExtensions": [
8236
"./jars/io.projectreactor.reactor-core.jar",
8337
"./jars/org.reactivestreams.reactive-streams.jar",

0 commit comments

Comments
 (0)