From ebaa79f6807041774e31268c9c206ad9919c8a5e Mon Sep 17 00:00:00 2001 From: Benjamin Benoist Date: Tue, 1 Mar 2022 17:34:46 +0100 Subject: [PATCH] enrich-pubsub: set google-oauth-client transitive dependency to 1.33.1 (close #566) --- build.sbt | 3 ++- project/Dependencies.scala | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index df6b812ba..d0e120fbf 100644 --- a/build.sbt +++ b/build.sbt @@ -228,7 +228,8 @@ lazy val pubsub = project libraryDependencies ++= Seq( Dependencies.Libraries.fs2BlobGcs, Dependencies.Libraries.fs2PubSub, - Dependencies.Libraries.gson + Dependencies.Libraries.gson, + Dependencies.Libraries.googleAuth ), addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1") ) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index d51de70b1..3035ce8f2 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -47,6 +47,7 @@ object Dependencies { val sprayJson = "1.3.6" // override transitive dependency to mitigate security vulnerabilities val netty = "4.1.68.Final" // override transitive dependency to mitigate security vulnerabilities val protobuf = "3.19.4" // override transitive dependency to mitigate security vulnerabilities + val googleAuth = "1.33.1" // override transitive dependency to mitigate security vulnerabilities val refererParser = "1.1.0" val maxmindIplookups = "0.7.1" @@ -146,6 +147,7 @@ object Dependencies { val slf4j = "org.slf4j" % "slf4j-simple" % V.slf4j val sentry = "io.sentry" % "sentry" % V.sentry val protobuf = "com.google.protobuf" % "protobuf-java" % V.protobuf + val googleAuth = "com.google.oauth-client" % "google-oauth-client" % V.googleAuth val specs2 = "org.specs2" %% "specs2-core" % V.specs2 % Test val specs2Cats = "org.specs2" %% "specs2-cats" % V.specs2 % Test