We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab28fdc commit 91c9142Copy full SHA for 91c9142
package.json
@@ -41,6 +41,18 @@
41
],
42
"main": "./out/extension",
43
"contributes": {
44
+ "problemMatchers": [
45
+ {
46
+ "owner": "gradle",
47
+ "name": "gradle",
48
+ "fileLocation": ["relative", "${workspaceFolder}"],
49
+ "pattern": {
50
+ "regexp": "^.*(FAILURE):\\s*(.*)$",
51
+ "severity": 1,
52
+ "message": 2
53
+ }
54
55
+ ],
56
"views": {
57
"explorer": [
58
{
src/tasks.ts
@@ -247,7 +247,8 @@ export function createTask(
247
folder,
248
normalizedTaskName,
249
'gradle',
250
- new ShellExecution(getCommandLine(taskName), { cwd })
+ new ShellExecution(getCommandLine(taskName), { cwd }),
251
+ ['$gradle']
252
);
253
task.presentationOptions = {
254
clear: true,
0 commit comments