helma/.vscode/tasks.json

66 lines
2.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": "Run with Gradle",
"type": "shell",
"command": "./gradlew run",
"isBackground": true,
"group": {
"isDefault": true
},
"problemMatcher": {
"owner": "java",
"fileLocation": "absolute",
"pattern": [
{
// [2024/06/15 16:23:22] [ERROR] [antville-1] GET:main.css helma.scripting.ScriptingException: TypeError: Cannot find function getStaticFile in object HopObject Skin. (/home/tobi/Projects/helma/repo/./apps/antville/code/Site/Site.js#474)
"regexp": "^\\[.+\\] \\[(.+)\\] \\[.+\\] \\S+ \\s+: (.+) \\(([^#]+)#(\\d+)\\)$",
"severity": 1,
"message": 2,
"file": 3,
"line": 4
},
{
// [2024/06/15 17:26:00] [INFO] [antville-1] INTERNAL:onStart done in 381 millis
"regexp": "^.+INTERNAL:onStart done in \\d+ millis",
"kind": "file",
"file": 0
}
],
"background": {
"activeOnStart": true,
"beginsPattern": "^.+(INTERNAL):onStart done in \\d+ millis",
"endsPattern": "terminated with exit code"
}
}
},
{
"label": "Debug with Gradle",
"type": "shell",
"command": "./gradlew debug",
"isBackground": true,
"problemMatcher": {
"owner": "custom",
"fileLocation": "absolute",
"pattern": [
{
// [2024/06/15 16:23:22] [ERROR] [antville-1] GET:main.css helma.scripting.ScriptingException: TypeError: Cannot find function getStaticFile in object HopObject Skin. (/home/tobi/Projects/helma/repo/./apps/antville/code/Site/Site.js#474)
"regexp": "^\\[.+\\] \\[(.+)\\] \\[.+\\] \\S+ \\s+: (.+) \\(([^#]+)#(\\d+)\\)$",
"severity": 1,
"message": 2,
"file": 3,
"line": 4
}
],
"background": {
"activeOnStart": true,
"beginsPattern": "Listening for transport dt_socket at address",
"endsPattern": "terminated with exit code"
}
}
}
]
}