From cf6415e9c538e82f4a24197a1b098a94f6c1e32b Mon Sep 17 00:00:00 2001 From: Brett Chabot Date: Mon, 25 Sep 2023 14:28:47 -0700 Subject: [PATCH] Bazel: update to use guava 32.0.1 consistently. Previously bazel builds would produce the following warning: ' com.google.guava:guava has multiple versions 29.0-android, 32.0.1-android'. This commit updates the guava version to be consistently 32.0.1 --- repositories.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repositories.bzl b/repositories.bzl index 80e2fa10..4bd88fe4 100644 --- a/repositories.bzl +++ b/repositories.bzl @@ -8,7 +8,7 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # ] + IO_GRPC_GRPC_KOTLIN_ARTIFACTS + IO_GRPC_GRPC_JAVA_ARTIFACTS, # ) IO_GRPC_GRPC_KOTLIN_ARTIFACTS = [ - "com.google.guava:guava:29.0-android", + "com.google.guava:guava:32.0.1-android", "com.squareup:kotlinpoet:1.14.2", "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3", "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3",