-
-
Notifications
You must be signed in to change notification settings - Fork 256
/
BUILD
42 lines (39 loc) · 859 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
42
load("@io_bazel_stardoc//stardoc:stardoc.bzl", "stardoc")
exports_files(
[
"includes/main_functions_header.md",
"includes/spec_functions_header.md",
],
visibility = ["//scripts:__pkg__"],
)
stardoc(
name = "defs",
out = "defs.md",
input = "//:defs.bzl",
symbol_names = [
"javadoc",
"java_export",
"maven_bom",
"maven_install",
],
visibility = ["//scripts:__pkg__"],
deps = [
"//:implementation",
"@bazel_skylib//lib:structs",
],
)
stardoc(
name = "specs",
out = "specs.md",
input = "//:specs.bzl",
symbol_names = [
"maven.artifact",
"maven.repository",
"maven.exclusion",
],
visibility = ["//scripts:__pkg__"],
deps = [
"//:implementation",
"@bazel_skylib//lib:structs",
],
)