forked from bazel-contrib/rules_jvm_external
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
36 lines (33 loc) · 753 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
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"],
)
stardoc(
name = "specs",
out = "specs.md",
input = "//:specs.bzl",
symbol_names = [
"maven.artifact",
"maven.repository",
"maven.exclusion",
],
visibility = ["//scripts:__pkg__"],
deps = ["//:implementation"],
)