You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ho...@apache.org on 2018/03/22 21:31:56 UTC

[incubator-openwhisk-test] branch master updated: adding Project name as its needed for managed deployments (#8)

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

houshengbo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-test.git


The following commit(s) were added to refs/heads/master by this push:
     new b128cfa  adding Project name as its needed for managed deployments (#8)
b128cfa is described below

commit b128cfaa0834164d2b7758c63d380a918c93bf89
Author: Priti Desai <pd...@us.ibm.com>
AuthorDate: Thu Mar 22 14:31:54 2018 -0700

    adding Project name as its needed for managed deployments (#8)
---
 packages/hellowhisk/manifest.yaml  | 16 +++++++++-------
 packages/helloworlds/manifest.yaml | 16 +++++++++-------
 2 files changed, 18 insertions(+), 14 deletions(-)

diff --git a/packages/hellowhisk/manifest.yaml b/packages/hellowhisk/manifest.yaml
index 7e5257d..c2f0459 100644
--- a/packages/hellowhisk/manifest.yaml
+++ b/packages/hellowhisk/manifest.yaml
@@ -1,9 +1,11 @@
 # Test manifest for incubator-openwhisk-wskdeploy utility
 # See https://github.com/apache/incubator-openwhisk-wskdeploy/tree/master/tests/src/integration/dependency
-packages:
-    hellowhisk:
-        actions:
-            greeting:
-                function: src/greeting.js
-            httpGet:
-                function: src/httpGet.swift
+project:
+    name: HelloWhisk
+    packages:
+        hellowhisk:
+            actions:
+                greeting:
+                    function: src/greeting.js
+                httpGet:
+                    function: src/httpGet.swift
diff --git a/packages/helloworlds/manifest.yaml b/packages/helloworlds/manifest.yaml
index 3460532..141be7a 100644
--- a/packages/helloworlds/manifest.yaml
+++ b/packages/helloworlds/manifest.yaml
@@ -1,7 +1,9 @@
-packages:
-    helloworlds:
-        actions:
-            hello-js:
-                function: src/hello.js
-            helloworld-js:
-                function: src/helloworld.js
+project:
+    name: HelloWorlds
+    packages:
+        helloworlds:
+            actions:
+                hello-js:
+                    function: src/hello.js
+                helloworld-js:
+                    function: src/helloworld.js

-- 
To stop receiving notification emails like this one, please contact
houshengbo@apache.org.