aboutsummaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 5f9e261..2bbd42e 100644
--- a/BUILD
+++ b/BUILD
@@ -13,8 +13,13 @@
# limitations under the License.
load("//bazel:stubs.bzl", "integration_test_filegroup")
+load("@rules_license//rules:license.bzl", "license")
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
+package(
+ default_applicable_licenses = ["//:license"],
+)
+
licenses(["notice"])
exports_files(["LICENSE"])
@@ -25,3 +30,15 @@ package_group(
"//...",
],
)
+
+bzl_library(
+ name = "visibility_bzl",
+ srcs = ["visibility.bzl"],
+ visibility = [":internal"],
+)
+
+license(
+ name = "license",
+ package_name = "rules_kotlin",
+ visibility = [":internal"],
+)