@@ -57,6 +57,7 @@ lazy val dependencies =
5757 val scalaLogging = " com.typesafe.scala-logging" %% " scala-logging" % scalaLoggingVersion
5858 val commonsLogging = " commons-logging" % " commons-logging" % " 1.2"
5959 val commonsCodec = " commons-codec" % " commons-codec" % " 1.9"
60+ val slf4jApi = " org.slf4j" % " slf4j-api" % " 1.7.5"
6061
6162 // CLI parsing depends
6263 val scallop = " org.rogach" %% " scallop" % scallopVersion
@@ -69,7 +70,9 @@ lazy val dependencies =
6970 val scalaTest = " org.scalatest" %% " scalatest" % scalaTestVersion % Test
7071 val scalaDockerTest = " com.whisk" %% " docker-testkit-scalatest" % dockerTestKitVersion % Test
7172 val spotifyDockerTest = " com.whisk" %% " docker-testkit-impl-spotify" % dockerTestKitVersion % Test
72- val slf4jLogging = " org.slf4j" % " slf4j-log4j12" % " 1.7.5"
73+ // Needed for Solr Minicluster tests
74+ val slf4jLog4j = " org.slf4j" % " slf4j-log4j12" % " 1.7.5" % Test
75+
7376
7477 val kudu = " org.apache.kudu" % " kudu-client" % kuduVersion
7578 val kuduTestUtils = " org.apache.kudu" % " kudu-test-utils" % kuduVersion % Test
@@ -122,7 +125,7 @@ lazy val dependencies =
122125 val cats = " org.typelevel" %% " cats-core" % " 1.1.0"
123126 val monix = " io.monix" %% " monix" % monixVersion
124127
125- val common = Seq (scalaLogging, scalaTest, slf4jLogging , commonsLogging, cats)
128+ val common = Seq (scalaLogging, scalaTest, slf4jApi, slf4jLog4j , commonsLogging, cats)
126129
127130 val cli = Seq (scallop, scalaYaml)
128131 val all = common ++ cli ++ Seq (scalaDockerTest, spotifyDockerTest)
0 commit comments