Skip to content

Commit

Permalink
Update netty to 4.1.115.Final for kafka and nsq collectors to patch C…
Browse files Browse the repository at this point in the history
  • Loading branch information
oermolaev authored Nov 27, 2024
1 parent 6e87ddd commit 50a5dab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,11 @@ lazy val kafkaSettings =
allSettings ++ buildInfoSettings ++ Seq(
moduleName := "opensnowcat-collector-kafka",
Docker / packageName := "scala-stream-collector-kafka",
libraryDependencies ++= Seq(Dependencies.Libraries.kafkaClients, Dependencies.Libraries.mskAuth)
libraryDependencies ++= Seq(
Dependencies.Libraries.kafkaClients,
Dependencies.Libraries.mskAuth,
Dependencies.Libraries.nettyAll
)
)

lazy val kafka = project
Expand All @@ -230,7 +234,8 @@ lazy val nsqSettings =
Dependencies.Libraries.nsqClient,
Dependencies.Libraries.jackson,
Dependencies.Libraries.log4j,
Dependencies.Libraries.guava
Dependencies.Libraries.guava,
Dependencies.Libraries.nettyAll
)
)

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

// Scala
val collectorPayload = "0.0.0"
Expand Down Expand Up @@ -82,6 +83,7 @@ object Dependencies {
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
val nettyAll = "io.netty" % "netty-all" % V.nettyAll

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

0 comments on commit 50a5dab

Please sign in to comment.