Skip to content

Commit

Permalink
Stream: bump log4j-core to 2.13.3 (close #368)
Browse files Browse the repository at this point in the history
  • Loading branch information
chuwy committed Oct 6, 2020
1 parent 39c6f6c commit 85f068d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,11 @@ lazy val nsq = project
.settings(
packageName in Docker := "snowplow/stream-enrich-nsq",
)
.settings(libraryDependencies ++= Seq(Dependencies.Libraries.nsqClient))
.settings(libraryDependencies ++= Seq(
Dependencies.Libraries.log4j,
Dependencies.Libraries.log4jApi,
Dependencies.Libraries.nsqClient
))
.enablePlugins(JavaAppPackaging, DockerPlugin)
.dependsOn(stream)

Expand Down
3 changes: 3 additions & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ object Dependencies {
val yauaa = "5.19"
val guava = "28.1-jre"
val slf4j = "1.7.26"
val log4j = "2.13.3"

val refererParser = "1.1.0"
val maxmindIplookups = "0.7.1"
Expand Down Expand Up @@ -92,6 +93,8 @@ object Dependencies {
val jaywayJsonpath = "com.jayway.jsonpath" % "json-path" % V.jaywayJsonpath
val yauaa = "nl.basjes.parse.useragent" % "yauaa" % V.yauaa
val guava = "com.google.guava" % "guava" % V.guava
val log4j = "org.apache.logging.log4j" % "log4j-core" % V.log4j
val log4jApi = "org.apache.logging.log4j" % "log4j-api" % V.log4j

val circeCore = "io.circe" %% "circe-core" % V.circe
val circeGeneric = "io.circe" %% "circe-generic" % V.circe
Expand Down

0 comments on commit 85f068d

Please sign in to comment.