From 83603a5b1acfbc69cd97d47ea3eed70a0beafb87 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Tue, 22 Sep 2020 19:16:32 +0200 Subject: [PATCH] Inherit io.grpc version from Akka gRPC (#2427) --- project/Dependencies.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index fbafa5c088..494497e9a2 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -232,9 +232,7 @@ object Dependencies { libraryDependencies ++= Seq( // https://github.com/googleapis/java-pubsub/tree/master/proto-google-cloud-pubsub-v1/ "com.google.api.grpc" % "grpc-google-cloud-pubsub-v1" % "1.85.1" % "protobuf-src", // ApacheV2 - // Align with the version from the Akka gRPC plugin - // https://doc.akka.io/docs/akka-grpc/current/server/walkthrough.html#dependencies - "io.grpc" % "grpc-auth" % "1.30.0", // ApacheV2 + "io.grpc" % "grpc-auth" % akka.grpc.gen.BuildInfo.grpcVersion, // ApacheV2 "com.google.auth" % "google-auth-library-oauth2-http" % "0.20.0", // BSD 3-clause // pull in Akka Discovery for our Akka version "com.typesafe.akka" %% "akka-discovery" % AkkaVersion