We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f04575 commit 30b24ccCopy full SHA for 30b24cc
examples/deps/deps_jvm_external.bzl
@@ -1,5 +1,8 @@
1
"""A module for bringing in transitive dependencies of rules_jvm_external"""
2
3
+# note that the following line is what is minimally required from protobuf for the java rules
4
+# consider using the protobuf_deps() public API from @com_google_protobuf//:protobuf_deps.bzl
5
+load("@com_google_protobuf//bazel/private:proto_bazel_features.bzl", "proto_bazel_features") # buildifier: disable=bzl-visibility
6
load("@rules_jvm_external//:defs.bzl", "maven_install")
7
8
def deps_jvm_external():
@@ -14,3 +17,4 @@ def deps_jvm_external():
14
17
"https://repo1.maven.org/maven2",
15
18
],
16
19
)
20
+ proto_bazel_features(name = "proto_bazel_features")
0 commit comments