Skip to content

Commit

Permalink
enrich-pubsub: set google-oauth-client transitive dependency to 1.33.1 (
Browse files Browse the repository at this point in the history
close #566)
  • Loading branch information
benjben committed Mar 4, 2022
1 parent 5c17347 commit ebaa79f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
)
Expand Down
2 changes: 2 additions & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit ebaa79f

Please sign in to comment.