You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by nw...@apache.org on 2019/01/03 21:27:49 UTC

[incubator-heron] branch master updated: Add simulator into release package, and explicitly add java/scala api (#3144)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d0141cb  Add simulator into release package, and explicitly add java/scala api (#3144)
d0141cb is described below

commit d0141cbfe3d549d1e597882a81a02c4e41688ef3
Author: Ning Wang <nw...@twitter.com>
AuthorDate: Thu Jan 3 13:27:44 2019 -0800

    Add simulator into release package, and explicitly add java/scala api (#3144)
---
 scripts/packages/BUILD | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

diff --git a/scripts/packages/BUILD b/scripts/packages/BUILD
index f1e6996..ae67e49 100644
--- a/scripts/packages/BUILD
+++ b/scripts/packages/BUILD
@@ -418,6 +418,8 @@ pkg_tar(
     package_dir = "lib/api",
     srcs = [
         "//heron/api/src/cpp:cxx-api",
+        "//heron/api/src/java:api-java",
+        "//heron/api/src/scala:api-scala",
         "//heron/tools/apiserver/src/java:heron-apiserver",
     ],
 )
@@ -461,6 +463,14 @@ pkg_tar(
 )
 
 pkg_tar(
+    name = "heron-simulator",
+    package_dir = "lib/simulator",
+    srcs = [
+        "//heron/simulator/src/java:simulator-java",
+    ],
+)
+
+pkg_tar(
     name = "heron",
     extension = "tar.gz",
     srcs = generated_release_files,
@@ -480,13 +490,14 @@ pkg_tar(
         ":heron-include-tuple",
         ":heron-include-utils",
         ":heron-lib-api",
-        ":heron-lib-third_party",
-        ":heron-lib-scheduler",
+        ":heron-lib-downloader",
+        ":heron-lib-metricscachemgr",
         ":heron-lib-packing",
+        ":heron-lib-scheduler",
         ":heron-lib-statemgr",
-        ":heron-lib-metricscachemgr",
+        ":heron-lib-third_party",
         ":heron-lib-uploader",
-        ":heron-lib-downloader",
+        ":heron-simulator",
     ],
 )