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

conf(vscode): adds launch and setting for root folder

adds the vscode settings so that one can run debug and test using IDE from the root folder
parent 582145a7
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": "javafx-template App",
"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"
},
{
"type": "java",
"name": "modules-template App",
"request": "launch",
"mainClass": "calc.ui/ui.App",
"vmArgs": ["--add-opens", "calc.ui/ui=ALL-UNNAMED", "--add-exports", "javafx.graphics/com.sun.javafx.application=ALL-UNNAMED"],
"projectName": "modules-ui"
},
{
"type": "java",
"name": "packages-template App",
"request": "launch",
"mainClass": "app/ui.App",
"vmArgs": ["--add-opens", "app/core=ALL-UNNAMED", "--add-opens", "app/ui=ALL-UNNAMED", "--add-exports", "javafx.graphics/com.sun.javafx.application=ALL-UNNAMED"],
"projectName": "packages-template"
}
]
}
\ No newline at end of file
{
"java.configuration.updateBuildConfiguration": "automatic"
"java.configuration.updateBuildConfiguration": "automatic",
"[java]": {
"editor.tabSize": 2
},
"java.test.config": [
{
"name": "coreTesting",
"vmArgs": []
},
{
"name": "modules-template testing",
"vmArgs": ["--add-opens", "calc.ui/ui=ALL-UNNAMED", "--add-exports", "javafx.graphics/com.sun.javafx.application=ALL-UNNAMED"]
},
{
"name": "javafx-template testing",
"vmArgs": ["--add-opens", "app/app=ALL-UNNAMED", "--add-exports", "javafx.graphics/com.sun.javafx.application=ALL-UNNAMED"]
},
{
"name": "packages-template testing",
"vmArgs": ["--add-opens", "app/core=ALL-UNNAMED", "--add-opens", "app/ui=ALL-UNNAMED", "--add-exports", "javafx.graphics/com.sun.javafx.application=ALL-UNNAMED"]
}
],
"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