Files
bookocontacts/.vscode/launch.json
T

29 lines
1.2 KiB
JSON
Raw Normal View History

2026-02-15 09:58:46 -05:00
{
// 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": [
2026-02-18 15:05:18 -05:00
{
"type": "java",
"name": "View",
"request": "launch",
"mainClass": "edu.bookocontacts.AppSceneView",
"projectName": "bookocontacts"
},
2026-02-15 09:58:46 -05:00
{
"type": "java",
"name": "Windows Current File",
"request": "launch",
2026-02-18 15:05:18 -05:00
"mainClass": "edu.bookocontacts.AppSceneView",
2026-02-15 09:58:46 -05:00
"vmArgs": " --module-path 'C://Program Files//javafx-25//lib' --add-modules ALL-MODULE-PATH --enable-native-access=javafx.graphics"
},
{
"type": "java",
"name": "Linux Current File",
"request": "launch",
2026-02-18 15:05:18 -05:00
"mainClass": "edu.bookocontacts.AppSceneView",
2026-02-19 18:48:06 -05:00
"vmArgs": " --class-path .:edu.bookocontacts:edu.bookocontacts.model --module-path '/home/sherwinp/workspace/javafx-sdk/lib/' --add-modules ALL-MODULE-PATH --enable-native-access=javafx.graphics"
2026-02-15 09:58:46 -05:00
}
]
}