Skip to content

Commit a6da16c

Browse files
committed
Update Java deps
1 parent 7720976 commit a6da16c

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

modules/java/MODULE.bazel

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
2222
maven.install(
2323
name = "rules_proto_grpc_java_maven", # Deconflict
2424
artifacts = [
25-
"com.google.protobuf:protobuf-java:4.27.2",
26-
"com.google.protobuf:protobuf-java-util:4.27.2",
27-
"io.grpc:grpc-api:1.65.0",
28-
"io.grpc:grpc-netty:1.65.0",
29-
"io.grpc:grpc-protobuf:1.65.0",
30-
"io.grpc:grpc-stub:1.65.0",
25+
"com.google.protobuf:protobuf-java:4.30.2",
26+
"com.google.protobuf:protobuf-java-util:4.30.2",
27+
"io.grpc:grpc-api:1.72.0",
28+
"io.grpc:grpc-netty:1.72.0",
29+
"io.grpc:grpc-protobuf:1.72.0",
30+
"io.grpc:grpc-stub:1.72.0",
3131
"javax.annotation:javax.annotation-api:1.3.2",
3232
],
3333
strict_visibility = True,

modules/java/module_extensions.bzl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
55
def _download_plugins(module_ctx):
66
"""Download plugins."""
77
for platform, hash in [
8-
("darwin-arm64", "dcee3d7720a92f247dbefc17288db878ad9981293db293c86a1afb6074935c53"),
9-
("darwin-x86_64", "dcee3d7720a92f247dbefc17288db878ad9981293db293c86a1afb6074935c53"),
10-
("linux-arm64", "308435e80ba288b0804b3e448b9ad97500b545f801297eb7ea142db8fe81fb9c"),
11-
("linux-x86_64", "a9f9a7987be4a37c69a85e5e8885394356fd2f1a47f843c6461da4fc99f407b3"),
12-
("windows-x86_64", "9d6659af976eb5ff664eb853bba25bcdf988500040227711bd87146c55241779"),
8+
("darwin-arm64", "24febbebd503a564b0b257e51514f6c871ea1feb44a48b593b078616f7b0a2b5"),
9+
("darwin-x86_64", "24febbebd503a564b0b257e51514f6c871ea1feb44a48b593b078616f7b0a2b5"),
10+
("linux-arm64", "40e1bc64dea38a1af5a4e40e3adbf0019957719f1e2a966024d4deac90986eab"),
11+
("linux-x86_64", "94e2eeea024541be8d0d47396ff4bbedc98903309b32aaf54fa93355d1016838"),
12+
("windows-x86_64", "d4741560c90932a3443b234dee9e52351c368a27c37766c34cdc95cab8d2b043"),
1313
]:
1414
http_file(
1515
name = "grpc_java_plugin_{}".format(platform.replace("-", "_")),
1616
executable = True,
1717
sha256 = hash,
18-
url = "https://repo1.maven.org/maven2/io/grpc/protoc-gen-grpc-java/1.65.0/protoc-gen-grpc-java-1.65.0-{}.exe".format(
18+
url = "https://repo1.maven.org/maven2/io/grpc/protoc-gen-grpc-java/1.72.0/protoc-gen-grpc-java-1.72.0-{}.exe".format(
1919
platform.replace("darwin", "osx").replace("arm64", "aarch_64"),
2020
),
2121
)

0 commit comments

Comments
 (0)