forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE.bzlmod
More file actions
30 lines (25 loc) · 748 Bytes
/
WORKSPACE.bzlmod
File metadata and controls
30 lines (25 loc) · 748 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
26
27
28
29
30
# This file will replace the content of the WORKSPACE file when Bzlmod is enabled
# No WORKSPACE prefix or suffix are added.
# Required by @com_google_protobuf//java/util:util in protobuf 3.19.0
# TODO(pcloudy): Remove those bind rules, when com_google_protobuf can
# fetch jar dependencies via rules_jvm_external with module extension.
bind(
name = "error_prone_annotations",
actual = "//third_party:error_prone_annotations",
)
bind(
name = "j2objc_annotations",
actual = "//third_party/java/j2objc-annotations:j2objc-annotations",
)
bind(
name = "gson",
actual = "//third_party:gson",
)
bind(
name = "jsr305",
actual = "//third_party:jsr305",
)
bind(
name = "guava",
actual = "//third_party:guava",
)