forked from jenkinsci/pipeline-graph-view-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.json
More file actions
29 lines (29 loc) · 642 Bytes
/
launch.json
File metadata and controls
29 lines (29 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"version": "2.0.0",
"configurations": [
{
"name": "Debug Frontend",
"type": "chrome",
"request": "launch",
"preLaunchTask": "Run Jenkins",
"url": "http://localhost:8080/jenkins",
"pathMapping": {
"/jenkins/plugin/pipeline-graph-view": "${workspaceFolder}/src/main/webapp"
}
},
{
"name": "Debug Java",
"type": "java",
"request": "attach",
"preLaunchTask": "Run Jenkins",
"hostName": "localhost",
"port": 8000
}
],
"compounds": [
{
"name": "Debug All",
"configurations": ["Debug Java", "Debug Frontend"]
}
]
}