-
-
Notifications
You must be signed in to change notification settings - Fork 259
/
BUILD
41 lines (36 loc) · 933 Bytes
/
BUILD
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
exports_files([
"defs.bzl",
"specs.bzl",
])
licenses(["notice"]) # Apache 2.0
bzl_library(
name = "implementation",
srcs = [
":defs.bzl",
":specs.bzl",
"@bazel_features//:bzl_files",
"@rules_license//:docs_deps",
],
visibility = [
# This library is only visible to allow others who depend on
# `rules_jvm_external` to be able to document their code using
# stardoc.
"//visibility:public",
],
deps = [
"//private:implementation",
"//private/lib:implementation",
"//private/rules:implementation",
"//settings:implementation",
"@rules_java//java:rules",
],
)
alias(
name = "mirror_coursier",
actual = "//scripts:mirror_coursier",
)
alias(
name = "generate_api_reference",
actual = "//scripts:generate_api_reference",
)