-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy pathBUILD.bazel
More file actions
23 lines (22 loc) · 666 Bytes
/
BUILD.bazel
File metadata and controls
23 lines (22 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
java_library(
name = "stub",
srcs = glob([
"src/main/java/**/*.java",
]),
visibility = ["//visibility:public"],
deps = [
"//context",
"//core",
"@com_google_code_findbugs_jsr305//jar",
"@com_google_guava_guava//jar",
"@com_google_j2objc_j2objc_annotations//jar",
],
)
# javax.annotation.Generated is not included in the default root modules in 9,
# see: http://openjdk.java.net/jeps/320.
java_library(
name = "javax_annotation",
neverlink = 1, # @Generated is source-retention
visibility = ["//visibility:public"],
exports = ["@javax_annotation_javax_annotation_api//jar"],
)