Skip to content

Set google guava to 33.2.1-jre for vulnerable sbt modules #159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading