Skip to content
Snippets Groups Projects
Commit 01bf1247 authored by Hallvard Trætteberg's avatar Hallvard Trætteberg
Browse files
parents a15aec24 842af3c3
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": "Launch Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "Launch TodoApp",
"request": "launch",
"mainClass": "todolist.ui/todolist.ui.TodoApp",
"vmArgs": "--add-opens todolist.ui/todolist.ui=ALL-UNNAMED --add-exports javafx.graphics/com.sun.javafx.application=ALL-UNNAMED",
"projectName": "fxui"
},
{
"type": "java",
"name": "Launch TodoDocumentApp",
"request": "launch",
"mainClass": "todolist.ui/todolist.ui.TodoDocumentApp",
"vmArgs": "--add-opens todolist.ui/todolist.ui=ALL-UNNAMED --add-exports javafx.graphics/com.sun.javafx.application=ALL-UNNAMED",
"projectName": "fxui"
},
{
"type": "java",
"name": "Launch TodoRemoteApp",
"request": "launch",
"mainClass": "todolist.ui/todolist.ui.TodoRemoteApp",
"vmArgs": "--add-opens todolist.ui/todolist.ui=ALL-UNNAMED --add-exports javafx.graphics/com.sun.javafx.application=ALL-UNNAMED",
"projectName": "fxui"
}
]
}
\ No newline at end of file
...@@ -4,9 +4,15 @@ ...@@ -4,9 +4,15 @@
"[java]": { "[java]": {
"editor.tabSize": 2 "editor.tabSize": 2
}, },
"java.test.config": { "java.test.config": [
{
"name": "coreTesting",
"vmArgs": []
},
{
"name": "fxuiTesting", "name": "fxuiTesting",
"vmArgs": ["--add-exports", "javafx.graphics/com.sun.javafx.application=ALL-UNNAMED"], "vmArgs": ["--add-opens", "todolist.ui/todolist.ui=ALL-UNNAMED", "--add-exports", "javafx.graphics/com.sun.javafx.application=ALL-UNNAMED"]
"env": {}
} }
],
"java.test.defaultConfig": "fxuiTesting"
} }
\ 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