You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2018/09/04 11:08:40 UTC

[royale-asjs] branch feature/new_merge updated: make tasks.json support multiple targets (I didn't configure anyone to be default to avoid more complex running)

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch feature/new_merge
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/feature/new_merge by this push:
     new 6963a65  make tasks.json support multiple targets (I didn't configure anyone to be default to avoid more complex running)
6963a65 is described below

commit 6963a655052d78f6bae0d75b0fb45c6cd7eaa90b
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Tue Sep 4 13:08:36 2018 +0200

    make tasks.json support multiple targets (I didn't configure anyone to be default to avoid more complex running)
---
 examples/royale/JewelExample/.vscode/tasks.json | 35 ++++++++++++++++++++-----
 1 file changed, 29 insertions(+), 6 deletions(-)

diff --git a/examples/royale/JewelExample/.vscode/tasks.json b/examples/royale/JewelExample/.vscode/tasks.json
index 5d6198d..b3383aa 100644
--- a/examples/royale/JewelExample/.vscode/tasks.json
+++ b/examples/royale/JewelExample/.vscode/tasks.json
@@ -1,8 +1,31 @@
 {
-	// for the documentation about the tasks.json format
-	"version": "0.1.0",
-	"command": "mvn",
-	"args": ["clean", "install", "-DskipTests"],
-	"isShellCommand": true,
-	"showOutput": "always"
+    // See https://go.microsoft.com/fwlink/?LinkId=733558
+    // for the documentation about the tasks.json format
+    "version": "2.0.0",
+    "tasks": [
+        {
+            "type": "actionscript",
+            "debug": true,
+            "problemMatcher": [
+                "$nextgenas_nomatch"
+            ],
+            "group": "build"
+        },
+        {
+            "label": "Build with Maven",
+            "type": "shell",
+            "command": "mvn",
+            "args": [
+                "clean",
+                "install",
+                "-DskipTests"
+            ],
+            "group": "build",
+            "presentation": {
+                "reveal": "always",
+                "panel": "new"
+            }
+        }
+    ]
+    
 }
\ No newline at end of file