Files
setup-java/.github/java.json
T
dc8e16ad37 add javac problem matcher (#562)
* add javac problemMatcher

* fix spaces

Co-authored-by: Copilot Autofix powered by AI <[email protected]>

---------

Co-authored-by: Bruno Borges <[email protected]>
Co-authored-by: Copilot Autofix powered by AI <[email protected]>
2026-06-22 16:37:47 -04:00

27 lines
627 B
JSON

{
"problemMatcher": [
{
"owner": "java",
"pattern": [
{
"regexp": "^Exception in thread \"(.*)\" (.*): (.*)$",
"code": 2,
"message": 3
}
]
},
{
"owner": "javac",
"pattern": [
{
"regexp": "^([^:]+):(\\d+): (warning|error): (.+?)$",
"file": 1,
"line": 2,
"severity": 3,
"message": 4
}
]
}
]
}