diff --git a/templates/java/HelloWorld/recipe.yaml b/templates/java/HelloWorld/recipe.yaml index 623054e..f084a77 100644 --- a/templates/java/HelloWorld/recipe.yaml +++ b/templates/java/HelloWorld/recipe.yaml @@ -11,6 +11,6 @@ Manifests: - Platform: os: all Artifacts: - - URI: "s3://BUCKET_NAME/COMPONENT_NAME/COMPONENT_VERSION/HelloWorld-1.0.0.jar" + - Uri: "s3://BUCKET_NAME/COMPONENT_NAME/COMPONENT_VERSION/HelloWorld-1.0.0.jar" Lifecycle: - Run: "java -cp {artifacts:path}/HelloWorld-1.0.0.jar com.hello.App {configuration:/Message}" \ No newline at end of file + run: "java -cp {artifacts:path}/HelloWorld-1.0.0.jar com.hello.App {configuration:/Message}" diff --git a/templates/java/LocalPubSub/recipe.yaml b/templates/java/LocalPubSub/recipe.yaml index a5946b0..5263c41 100644 --- a/templates/java/LocalPubSub/recipe.yaml +++ b/templates/java/LocalPubSub/recipe.yaml @@ -21,6 +21,6 @@ Manifests: - Platform: os: all Artifacts: - - URI: "s3://BUCKET_NAME/COMPONENT_NAME/COMPONENT_VERSION/LocalPubSub-1.0.0.jar" + - Uri: "s3://BUCKET_NAME/COMPONENT_NAME/COMPONENT_VERSION/LocalPubSub-1.0.0.jar" Lifecycle: - Run: "java -cp {artifacts:path}/LocalPubSub-1.0.0.jar com.localpubsub.App '{configuration:/Topic}' '{configuration:/Message}'" + run: "java -cp {artifacts:path}/LocalPubSub-1.0.0.jar com.localpubsub.App '{configuration:/Topic}' '{configuration:/Message}'" diff --git a/templates/java/TestingFramework/component/recipe.yaml b/templates/java/TestingFramework/component/recipe.yaml index 622b728..3181938 100644 --- a/templates/java/TestingFramework/component/recipe.yaml +++ b/templates/java/TestingFramework/component/recipe.yaml @@ -8,6 +8,6 @@ Manifests: - Platform: os: all Artifacts: - - URI: "s3://BUCKET_NAME/COMPONENT_NAME/COMPONENT_VERSION/Component-1.0.0-SNAPSHOT.jar" + - Uri: "s3://BUCKET_NAME/COMPONENT_NAME/COMPONENT_VERSION/Component-1.0.0-SNAPSHOT.jar" Lifecycle: - Run: "java -cp {artifacts:path}/Component-1.0.0-SNAPSHOT.jar com.templates.otf.App" \ No newline at end of file + run: "java -cp {artifacts:path}/Component-1.0.0-SNAPSHOT.jar com.templates.otf.App" diff --git a/templates/python/HelloWorld/recipe.yaml b/templates/python/HelloWorld/recipe.yaml index 7601d52..ee77329 100644 --- a/templates/python/HelloWorld/recipe.yaml +++ b/templates/python/HelloWorld/recipe.yaml @@ -11,7 +11,7 @@ Manifests: - Platform: os: all Artifacts: - - URI: "s3://BUCKET_NAME/COMPONENT_NAME/COMPONENT_VERSION/com.example.PythonHelloWorld.zip" + - Uri: "s3://BUCKET_NAME/COMPONENT_NAME/COMPONENT_VERSION/com.example.PythonHelloWorld.zip" Unarchive: ZIP Lifecycle: - Run: "python3 -u {artifacts:decompressedPath}/com.example.PythonHelloWorld/main.py {configuration:/Message}" \ No newline at end of file + run: "python3 -u {artifacts:decompressedPath}/com.example.PythonHelloWorld/main.py {configuration:/Message}" diff --git a/templates/python/LocalPubSub/recipe.yaml b/templates/python/LocalPubSub/recipe.yaml index 43af908..7927788 100644 --- a/templates/python/LocalPubSub/recipe.yaml +++ b/templates/python/LocalPubSub/recipe.yaml @@ -21,7 +21,7 @@ Manifests: - Platform: os: all Artifacts: - - URI: "s3://BUCKET_NAME/COMPONENT_NAME/COMPONENT_VERSION/com.example.PythonLocalPubSub.zip" + - Uri: "s3://BUCKET_NAME/COMPONENT_NAME/COMPONENT_VERSION/com.example.PythonLocalPubSub.zip" Unarchive: ZIP Lifecycle: - Run: "python3 -u {artifacts:decompressedPath}/com.example.PythonLocalPubSub/main.py {configuration:/Topic} {configuration:/Message}" + run: "python3 -u {artifacts:decompressedPath}/com.example.PythonLocalPubSub/main.py {configuration:/Topic} {configuration:/Message}"