@@ -57,6 +57,7 @@ lazy val dependencies =
57
57
val scalaLogging = " com.typesafe.scala-logging" %% " scala-logging" % scalaLoggingVersion
58
58
val commonsLogging = " commons-logging" % " commons-logging" % " 1.2"
59
59
val commonsCodec = " commons-codec" % " commons-codec" % " 1.9"
60
+ val slf4jApi = " org.slf4j" % " slf4j-api" % " 1.7.5"
60
61
61
62
// CLI parsing depends
62
63
val scallop = " org.rogach" %% " scallop" % scallopVersion
@@ -69,7 +70,9 @@ lazy val dependencies =
69
70
val scalaTest = " org.scalatest" %% " scalatest" % scalaTestVersion % Test
70
71
val scalaDockerTest = " com.whisk" %% " docker-testkit-scalatest" % dockerTestKitVersion % Test
71
72
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
+
73
76
74
77
val kudu = " org.apache.kudu" % " kudu-client" % kuduVersion
75
78
val kuduTestUtils = " org.apache.kudu" % " kudu-test-utils" % kuduVersion % Test
@@ -122,7 +125,7 @@ lazy val dependencies =
122
125
val cats = " org.typelevel" %% " cats-core" % " 1.1.0"
123
126
val monix = " io.monix" %% " monix" % monixVersion
124
127
125
- val common = Seq (scalaLogging, scalaTest, slf4jLogging, commonsLogging, cats)
128
+ val common = Seq (scalaLogging, scalaTest, slf4jApi, slf4jLog4j, commonsLogging, cats, logback )
126
129
127
130
val cli = Seq (scallop, scalaYaml)
128
131
val all = common ++ cli ++ Seq (scalaDockerTest, spotifyDockerTest)
0 commit comments