Skip to content

Commit 42026bd

Browse files
JessicaJHeedatho7561
authored andcommitted
Display errors in Qute after building Quarkus application
Signed-off-by: Jessica He <[email protected]>
1 parent f960081 commit 42026bd

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/wizards/debugging/TaskCreator.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,15 @@ const TASK_DEFINITION_PROTOTYPE: TaskDefinition =
2727
isBackground: true,
2828
problemMatcher: [
2929
{
30+
owner: "quarkus",
31+
fileLocation: ["relative", "${workspaceFolder}/src/main/resources/templates"],
3032
pattern: [
3133
{
32-
regexp: "\\b\\B",
33-
file: 1,
34-
location: 2,
35-
message: 3
34+
"regexp": "\\[(\\d+)\\]\\s(.*):(\\d+):(\\d+)\\s\\-\\s{(.*)}:\\s(.*)$",
35+
"file": 2,
36+
"line": 3,
37+
"column": 4,
38+
"message": 6
3639
}
3740
],
3841
background: {

0 commit comments

Comments
 (0)