Added Spring Boot extension

This commit is contained in:
Erik C. Thauvin 2023-10-25 20:38:39 -07:00
parent 51a2cfee1c
commit dff0d88182
5 changed files with 48 additions and 6 deletions

15
.vscode/launch.json vendored
View file

@ -1,11 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Run Main",
"request": "launch",
"mainClass": "com.example.springboot.Application"
},
{
"type": "java",
"name": "Run Tests",
"request": "launch",
"mainClass": "com.example.springboot.DemoApplicationTests"
"mainClass": "org.junit.platform.console.ConsoleLauncher",
"args": [
"--details=verbose",
"--scan-classpath",
"--disable-banner",
"--disable-ansi-colors",
"--exclude-engine=junit-platform-suite",
"--exclude-engine=junit-vintage"]
}
]
}