-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
25 lines (22 loc) · 679 Bytes
/
BUILD
File metadata and controls
25 lines (22 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
load("@rules_license//rules:license.bzl", "license")
exports_files([
"LICENSE.txt",
])
# Using a package wide default ensure that all targets are associated with the
# license.
package(
default_applicable_licenses = [":license"],
default_visibility = ["//visibility:public"],
)
license(
name = "license",
copyright_notice = "Copyright (c) 2017-2024, Salesforce",
license_kinds = [
"@rules_license//licenses/spdx:Apache-2.0",
],
license_text = "//:LICENSE.txt",
package_name = "@rules_spring",
package_url = "https://github.com/salesforce/rules_spring",
package_version = "2.4.2",
visibility = ["//visibility:public"],
)