{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Build Debug with AS3 Extension",
            "type": "actionscript",
            "debug": true,
            "problemMatcher": [
                "$nextgenas_nomatch"
            ],
            "group": "build"
        },
        {
            "label": "Build with Maven option-with-swf ",
            "type": "shell",
            "command": "mvn",
            "args": [
                "clean",
                "install",
                "-P option-with-swf",
                "-DskipTests"
            ],
            "group": "build",
            "presentation": {
                "echo": true,
                "reveal": "always",
                "focus": true,
                "panel": "dedicated"
            },
            "problemMatcher": [
                "$nextgenas_nomatch"
            ]
        },
        {
            "label": "Build with Maven",
            "type": "shell",
            "command": "mvn",
            "args": [
                "clean",
                "install",
                "-DskipTests"
            ],
            "group": "build",
            "presentation": {
                "echo": true,
                "reveal": "always",
                "focus": true,
                "panel": "dedicated"
            },
            "problemMatcher": [
                "$nextgenas_nomatch"
            ]
        },
        {
            "label": "Build Release with AS3 Extension",
            "type": "actionscript",
            "debug": false,
            "problemMatcher": [
                "$nextgenas_nomatch"
            ],
            "group": "build"
        },
        {
            "label": "build with asconfigc",
            "type": "shell",
            "command": "asconfigc",
            "windows": {
                "args": [
                    "--sdk=${env:ROYALE_HOME}"
                ]
            },
            "osx": {
                "args": [
                    "--sdk=${env:ROYALE_HOME}"
                ]
            },
            "presentation": {
                "echo": true,
                "reveal": "always",
                "focus": true,
                "panel": "dedicated"
            },
            "problemMatcher": [
                "$nextgenas_nomatch"
            ],
            "group": "build"
        }
    ]
}