Skip to content

Commit

Permalink
bazel: correctly export license (#586)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll authored Apr 5, 2024
1 parent 5bf896f commit f0d4e59
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,23 @@ load(
"@gz//bazel/lint:lint.bzl",
"add_lint_tests",
)
load(
"@rules_license//rules:license.bzl",
"license",
)

package(
default_applicable_licenses = [GZ_ROOT + "math:license"],
default_visibility = GZ_VISIBILITY,
features = GZ_FEATURES,
)

licenses(["notice"]) # Apache-2.0
license(
name = "license",
package_name = "gz-math",
)

licenses(["notice"])

exports_files(["LICENSE"])

Expand Down

0 comments on commit f0d4e59

Please sign in to comment.