Add launch configuration for debugging Helma
All checks were successful
Build / build (push) Successful in 34s

This commit is contained in:
Tobi Schäfer 2025-04-08 12:05:54 +02:00
parent f786b40961
commit 96f2dce50f
Signed by: tobi
GPG key ID: 91FAE6FE2EBAC4C8

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": "Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "Debug",
"request": "launch",
"mainClass": "helma.main.Server",
"projectName": "helma_"
}
]
}