Skip to content

Commit

Permalink
Set protobuf-java transitive dependency to 3.19.4 (close #561)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjben committed Feb 18, 2022
1 parent a7d9347 commit 36c4a93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ lazy val common = project
Dependencies.Libraries.sprayJson,
Dependencies.Libraries.nettyAll,
Dependencies.Libraries.nettyCodec,
Dependencies.Libraries.protobuf,
Dependencies.Libraries.specs2,
Dependencies.Libraries.specs2Cats,
Dependencies.Libraries.specs2Scalacheck,
Expand Down
8 changes: 5 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ object Dependencies {
val thrift = "0.15.0" // override transitive dependency to mitigate security vulnerabilities
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 refererParser = "1.1.0"
val maxmindIplookups = "0.7.1"
Expand Down Expand Up @@ -139,10 +140,11 @@ object Dependencies {
val iabClient = "com.snowplowanalytics" % "iab-spiders-and-robots-client" % V.iabClient
val thrift = "org.apache.thrift" % "libthrift" % V.thrift
val sprayJson = "io.spray" %% "spray-json" % V.sprayJson
val nettyAll = "io.netty" % "netty-all" % V.netty
val nettyCodec = "io.netty" % "netty-codec" % V.netty
val slf4j = "org.slf4j" % "slf4j-simple" % V.slf4j
val nettyAll = "io.netty" % "netty-all" % V.netty
val nettyCodec = "io.netty" % "netty-codec" % V.netty
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 specs2 = "org.specs2" %% "specs2-core" % V.specs2 % Test
val specs2Cats = "org.specs2" %% "specs2-cats" % V.specs2 % Test
Expand Down

0 comments on commit 36c4a93

Please sign in to comment.