Skip to content

Commit

Permalink
Set google guava to 33.2.1-jre for vulnerable sbt modules (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
oermolaev authored Oct 22, 2024
1 parent db49703 commit cfe059c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ lazy val pubsubSettings =
libraryDependencies ++= Seq(
Dependencies.Libraries.pubsub,
Dependencies.Libraries.protobuf,
Dependencies.Libraries.guava,
// integration tests dependencies
Dependencies.Libraries.specs2It,
Dependencies.Libraries.specs2CEIt
Expand Down Expand Up @@ -227,7 +228,8 @@ lazy val nsqSettings =
libraryDependencies ++= Seq(
Dependencies.Libraries.nsqClient,
Dependencies.Libraries.jackson,
Dependencies.Libraries.log4j
Dependencies.Libraries.log4j,
Dependencies.Libraries.guava
)
)

Expand Down
2 changes: 2 additions & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ object Dependencies {
val thrift = "0.15.0"
val jnrUnixsock = "0.38.22"
val protobuf = "3.25.4"
val guava = "32.1.3-jre"

// Scala
val collectorPayload = "0.0.0"
Expand Down Expand Up @@ -79,6 +80,7 @@ object Dependencies {
val jnrUnixsocket = "com.github.jnr" % "jnr-unixsocket" % V.jnrUnixsock
val rabbitMQ = "com.rabbitmq" % "amqp-client" % V.rabbitMQ
val protobuf = "com.google.protobuf" % "protobuf-java" % V.protobuf
val guava = "com.google.guava" % "guava" % V.guava

// Scala
val collectorPayload = "com.snowplowanalytics" % "collector-payload-1" % V.collectorPayload
Expand Down

0 comments on commit cfe059c

Please sign in to comment.