2020-04-22 01:59:03 +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": "Debug (Launch) - Current File",
|
|
|
|
"request": "launch",
|
|
|
|
"mainClass": "${file}"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "java",
|
2020-04-22 08:26:46 +00:00
|
|
|
"name": "Debug With MC Server",
|
2020-04-22 01:59:03 +00:00
|
|
|
"request": "attach",
|
|
|
|
"hostName": "localhost",
|
2020-04-22 08:26:46 +00:00
|
|
|
"port": 25566,
|
2020-04-28 21:53:23 +00:00
|
|
|
"sourcePaths": [
|
|
|
|
"src/main/java"
|
|
|
|
],
|
2020-04-22 08:26:46 +00:00
|
|
|
"preLaunchTask": "start test server",
|
|
|
|
"postDebugTask": "stop test server"
|
2020-04-22 01:59:03 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|