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

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

adds the vscode settings so that one can run debug and test using IDE from the modules-template folder
parent d06c5f31
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 modules-template - multi-module, multi-package ",
"request": "launch",
"mainClass": "calc.ui/ui.App",
"projectName": "modules-ui",
"vmArgs": ["--add-opens", "calc.ui/ui=ALL-UNNAMED", "--add-exports", "javafx.graphics/com.sun.javafx.application=ALL-UNNAMED"]
}
]
}
\ No newline at end of file
{
"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"]
}
],
"java.test.defaultConfig": "modules-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