Skip to content
This repository was archived by the owner on Nov 24, 2021. It is now read-only.

Remove log4j dependency #177

Open
wants to merge 1 commit into
base: release/2.4
Choose a base branch
from
Open
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
7 changes: 5 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ lazy val dependencies =
val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % scalaLoggingVersion
val commonsLogging = "commons-logging" % "commons-logging" % "1.2"
val commonsCodec = "commons-codec" % "commons-codec" % "1.9"
val slf4jApi = "org.slf4j" % "slf4j-api" % "1.7.5"

// CLI parsing depends
val scallop = "org.rogach" %% "scallop" % scallopVersion
Expand All @@ -69,7 +70,9 @@ lazy val dependencies =
val scalaTest = "org.scalatest" %% "scalatest" % scalaTestVersion % Test
val scalaDockerTest = "com.whisk" %% "docker-testkit-scalatest" % dockerTestKitVersion % Test
val spotifyDockerTest = "com.whisk" %% "docker-testkit-impl-spotify" % dockerTestKitVersion % Test
val slf4jLogging = "org.slf4j" % "slf4j-log4j12" % "1.7.5"
// Needed for Solr Minicluster tests
val slf4jLog4j = "org.slf4j" % "slf4j-log4j12" % "1.7.5" % Test


val kudu = "org.apache.kudu" % "kudu-client" % kuduVersion
val kuduTestUtils = "org.apache.kudu" % "kudu-test-utils" % kuduVersion % Test
Expand Down Expand Up @@ -122,7 +125,7 @@ lazy val dependencies =
val cats = "org.typelevel" %% "cats-core" % "1.1.0"
val monix = "io.monix" %% "monix" % monixVersion

val common = Seq(scalaLogging, scalaTest, slf4jLogging, commonsLogging, cats)
val common = Seq(scalaLogging, scalaTest, slf4jApi, slf4jLog4j, commonsLogging, cats, logback)

val cli = Seq(scallop, scalaYaml)
val all = common ++ cli ++ Seq(scalaDockerTest, spotifyDockerTest)
Expand Down