Skip to content

Commit

Permalink
Replace rules_proto with underlying protobuf module. (#187)
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Peterson <[email protected]>

Signed-off-by: Benjamin Peterson <[email protected]>
  • Loading branch information
benjaminp authored Dec 9, 2024
1 parent 623c623 commit c31465a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "buildifier_prebuilt", version = "6.4.0")
bazel_dep(name = "platforms", version = "0.0.10")
bazel_dep(name = "rules_java", version = "8.6.1")
bazel_dep(name = "rules_jvm_external", version = "6.2")
bazel_dep(name = "rules_proto", version = "6.0.2")
bazel_dep(name = "protobuf", version = "27.2")
bazel_dep(name = "rules_jvm_external", version = "6.3")
bazel_dep(name = "protobuf", version = "29.1")

# =========================================
# Java dependencies
Expand Down
4 changes: 2 additions & 2 deletions proto/BUILD
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("@rules_java//java:defs.bzl", "java_proto_library")
load("@rules_proto//proto:defs.bzl", "proto_library")
load("@protobuf//bazel:java_proto_library.bzl", "java_proto_library")
load("@protobuf//bazel:proto_library.bzl", "proto_library")

proto_library(
name = "bazel_invocation_analyzer_proto",
Expand Down

0 comments on commit c31465a

Please sign in to comment.