dataflow/.vscode/launch.json

19 lines
581 B
JSON
Raw Normal View History

2022-07-27 08:25:10 +00:00
{
// 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 Server",
"request": "launch",
"mainClass": "com.yuandian.dataflow.Server",
"projectName": "dataflow",
2022-07-27 10:02:24 +00:00
"args": ["2"],
2022-07-27 08:25:10 +00:00
"preLaunchTask": "restart",
"postDebugTask": "stopall",
2022-07-27 10:02:24 +00:00
2022-07-27 08:25:10 +00:00
}
]
}