forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE.bzlmod
32 lines (27 loc) · 849 Bytes
/
WORKSPACE.bzlmod
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
# This file will replace the content of the WORKSPACE file when Bzlmod is enabled
# No WORKSPACE prefix or suffix are added.
# Eventually this file should be empty after fully migrating to Bzlmod.
workspace(name = "io_bazel")
# 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",
)