Skip to content
Snippets Groups Projects
Commit d06c5f31 authored by George Adrian Stoica's avatar George Adrian Stoica
Browse files

conf(vscode): adds launch and settings for javafx-template folder

adds the vscode settings so that one can run debug and test using IDE from the javafx-template folder
parent 57eb9190
No related branches found
No related tags found
No related merge requests found
{
// 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": "Launch javafx-template - single module, single package",
"request": "launch",
"mainClass": "app/app.App",
"vmArgs": "--add-opens app/app=ALL-UNNAMED --add-exports javafx.graphics/com.sun.javafx.application=ALL-UNNAMED",
"projectName": "javafx-template"
}
]
}
{
"java.configuration.updateBuildConfiguration": "automatic",
"[java]": {
"editor.tabSize": 2
},
"java.test.config": [
{
"name": "javafx-template testing",
"vmArgs": ["--add-opens", "app/app=ALL-UNNAMED", "--add-exports", "javafx.graphics/com.sun.javafx.application=ALL-UNNAMED"]
}
],
"java.test.defaultConfig": "javafx-template testing",
"java.compile.nullAnalysis.mode": "automatic",
"java.debug.settings.onBuildFailureProceed": true
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment