-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlaunch.json
More file actions
21 lines (21 loc) · 947 Bytes
/
launch.json
File metadata and controls
21 lines (21 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug JUnit Tests (with FINE logging)",
"request": "launch",
"mainClass": "",
"projectName": "copilot-sdk",
"vmArgs": "-Djava.util.logging.config.file=${workspaceFolder}/src/test/resources/logging-debug.properties -Dcopilot.sdk.dir=${workspaceFolder}/target/copilot-sdk -Dcopilot.tests.dir=${workspaceFolder}/target/copilot-sdk/test"
},
{
"type": "java",
"name": "Debug Current Test File",
"request": "launch",
"mainClass": "",
"projectName": "copilot-sdk",
"vmArgs": "-Djava.util.logging.config.file=${workspaceFolder}/src/test/resources/logging-debug.properties -Dcopilot.sdk.dir=${workspaceFolder}/target/copilot-sdk -Dcopilot.tests.dir=${workspaceFolder}/target/copilot-sdk/test"
}
]
}