Advertisement
Guest User

Untitled

a guest
Dec 7th, 2018
1,433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.55 KB | None | 0 0
  1. {
  2.     // See https://go.microsoft.com/fwlink/?LinkId=733558
  3.     // for the documentation about the tasks.json format
  4.     "version": "2.0.0",
  5.     "tasks": [
  6.         {
  7.             "label": "Build",
  8.             "type": "process",
  9.             "command": "C:\\Program Files\\Java\\jre1.8.0_181\\bin\\java.exe",
  10.             "args": [
  11.                 "-Dfile.encoding=UTF-8",
  12.                 "-Dapple.awt.UIElement=true",
  13.                 "-jar",
  14.                 "D:\\Documents\\Garmin\\connectiq-sdk-win-3.0.6-2018-11-27-33ec0d6\\bin\\monkeybrains.jar",
  15.                 "-o",
  16.                 "${workspaceFolder}\\Build\\${workspaceFolderBasename}.prg",
  17.                 "-w",
  18.                 "-y",
  19.                 "D:\\Documents\\Garmin\\key\\developer_key.der",
  20.                 "-d",
  21.                 "vivoactive3m",
  22.                 "-s",
  23.                 "3.0.0",
  24.                 "-r",
  25.                 "-f",
  26.                 "${workspaceFolder}\\monkey.jungle"
  27.             ],
  28.             "group": {
  29.                 "kind": "build",
  30.                 "isDefault": true
  31.             },
  32.             "problemMatcher": {
  33.                 "owner": "mc",
  34.                 "fileLocation": [
  35.                     "absolute"
  36.                 ],
  37.                 "pattern": {
  38.                     "regexp": "^(.*): (.*): (.*):([0-9]*),([0-9]*): (.*)$",
  39.                     "file": 3,
  40.                     "line": 4,
  41.                     "column": 5,
  42.                     "severity": 1,
  43.                     "message": 6
  44.                 }
  45.             }
  46.         }
  47.     ]
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement