helma/.vscode/launch.json
Tobi Schäfer 96f2dce50f
All checks were successful
Build / build (push) Successful in 34s
Add launch configuration for debugging Helma
2025-04-08 12:05:54 +02:00

21 lines
522 B
JSON

{
// 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_"
}
]
}