{
"version": "2.0.0",
"tasks": [
{
"label": "ant: compile",
"type": "process",
"command": "cmd.exe",
"args": [
"/c",
"ant",
"-f",
"build\\build.xml",
"compile"
],
"options": {
"cwd": "${workspaceFolder}"
},
"group": "build",
"presentation": {
"reveal": "always",
"panel": "new",
"focus": false,
"clear": true
},
"problemMatcher": {
"owner": "java",
"fileLocation": ["relative", "${workspaceFolder}"],
"pattern": {
"regexp": "^(.*)

\\d+)

\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
},
"background": {
"activeOnStart": true,
"beginsPattern": "^.*javac.*$",
"endsPattern": "^.*BUILD.*(SUCCESS|FAILED).*$"
}
}
},
{
"label": "ant: deploy",
"type": "process",
"command": "cmd.exe",
"args": [
"/c",
"ant",
"-f",
"build\\build.xml",
"deploy"
],
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new",
"focus": false,
"clear": true
},
"problemMatcher": {
"owner": "java",
"fileLocation": ["relative", "${workspaceFolder}"],
"pattern": {
"regexp": "^(.*)

\\d+)

\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"dependsOn": "ant: compile"
},
{
"label": "ant: jar",
"type": "process",
"command": "cmd.exe",
"args": [
"/c",
"ant",
"-f",
"build\\build.xml",
"jar"
],
"options": {
"cwd": "${workspaceFolder}"
},
"group": "build",
"presentation": {
"reveal": "always",
"panel": "new",
"focus": false,
"clear": true
},
"problemMatcher": {
"owner": "java",
"fileLocation": ["relative", "${workspaceFolder}"],
"pattern": {
"regexp": "^(.*)

\\d+)

\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"dependsOn": "ant: compile"
},
{
"label": "ant: deploy_jar",
"type": "process",
"command": "cmd.exe",
"args": [
"/c",
"ant",
"-f",
"build\\build.xml",
"deploy_jar"
],
"options": {
"cwd": "${workspaceFolder}"
},
"group": "build",
"presentation": {
"reveal": "always",
"panel": "new",
"focus": false,
"clear": true
},
"problemMatcher": {
"owner": "java",
"fileLocation": ["relative", "${workspaceFolder}"],
"pattern": {
"regexp": "^(.*)

\\d+)

\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"dependsOn": "ant: jar"
},
{
"label": "ant: clean",
"type": "process",
"command": "cmd.exe",
"args": [
"/c",
"ant",
"-f",
"build\\build.xml",
"clean"
],
"options": {
"cwd": "${workspaceFolder}"
},
"group": "build",
"presentation": {
"reveal": "always",
"panel": "new",
"focus": false,
"clear": true
},
"problemMatcher": []
}
]
}