mcswebapi/.vscode/tasks.json

45 lines
1.2 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "verify",
"type": "shell",
"command": "mvn -B verify",
"group": "build"
},
{
"label": "package",
"type": "shell",
"command": "mvn -B package",
"group": "build"
},
{
"label": "test",
"type": "shell",
"command": "mvn -B test",
"group": "test"
},
{
"label": "load latest build",
"type": "shell",
"command": "python3",
"args": [
"${workspaceFolder}/SpigotPluginBaseTools/load_plugin.py"
],
"dependsOn": "package",
"problemMatcher": []
},
{
"label": "launch dev. server",
"type": "shell",
"command": "python3",
"dependsOn": "load latest build",
"args": [
"${workspaceFolder}/SpigotPluginBaseTools/start_server.py"
],
"problemMatcher": []
},
]
}