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

nicknezis 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 83a742f  Adding disclaimers to release artifacts (#3689)
83a742f is described below

commit 83a742f42fdf5bad46f35797e8e3e39f5e12b2a5
Author: Josh Fischer <[email protected]>
AuthorDate: Wed Apr 28 16:08:37 2021 -0500

    Adding disclaimers to release artifacts (#3689)
---
 BUILD                  | 11 +++++++++++
 scripts/packages/BUILD |  6 ++++++
 2 files changed, 17 insertions(+)

diff --git a/BUILD b/BUILD
index e69de29..8264048 100644
--- a/BUILD
+++ b/BUILD
@@ -0,0 +1,11 @@
+licenses(["notice"])
+package(default_visibility = ["//visibility:public"])
+
+filegroup(
+    name = "disclaimers",
+    srcs = [
+        "DISCLAIMER",
+        "LICENSE",
+        "NOTICE",
+    ]
+)
diff --git a/scripts/packages/BUILD b/scripts/packages/BUILD
index 0512490..67a185d 100644
--- a/scripts/packages/BUILD
+++ b/scripts/packages/BUILD
@@ -472,6 +472,11 @@ pkg_tar(
 )
 
 pkg_tar(
+    name = "disclaimers",
+    srcs = ["//:disclaimers"],
+)
+
+pkg_tar(
     name = "heron",
     srcs = generated_release_files,
     extension = "tar.gz",
@@ -499,6 +504,7 @@ pkg_tar(
         ":heron-lib-third_party",
         ":heron-lib-uploader",
         ":heron-simulator",
+        ":disclaimers",
     ],
 )
 

Reply via email to