This commit is contained in:
Christoph Kroczek
2019-04-19 12:50:01 +02:00
parent 216e77f45d
commit 9863a8358b
9 changed files with 89 additions and 0 deletions

21
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug (Launch) - Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "Debug (Launch)-Main<001_sequential_migration>",
"request": "launch",
"mainClass": "Main",
"projectName": "001_sequential_migration"
}
]
}