From 0c4380302e0025c503b3f03a39cab2228dce8c85 Mon Sep 17 00:00:00 2001 From: tomsht01 Date: Sun, 19 Jan 2025 16:13:16 +0200 Subject: [PATCH] fix: license propagation --- BUILD.bazel | 7 ------- CODEOWNERS | 3 +-- REPO.bazel | 7 ++++++- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/BUILD.bazel b/BUILD.bazel index f8c614a..73c80db 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1,13 +1,6 @@ load("@rules_license//rules:license.bzl", "license") load("@rules_license//rules:package_info.bzl", "package_info") -package( - default_applicable_licenses = [ - ":license", - ":package_info", - ], -) - licenses(["notice"]) license( diff --git a/CODEOWNERS b/CODEOWNERS index 38f4ed1..6354e86 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -4,8 +4,7 @@ *.md [Licensing] @matthew.clarkson -/.reuse/dep5 -/LICENSES/* +/LICENSE.md [Configuration] @matthew.clarkson .editorconfig diff --git a/REPO.bazel b/REPO.bazel index 179fa11..d4c9ccf 100644 --- a/REPO.bazel +++ b/REPO.bazel @@ -1 +1,6 @@ -repo(default_package_metadata = ["//:package_info"]) +repo( + default_package_metadata = [ + "//:package_info", + "//:license", + ], +) -- GitLab