1
1
import sbtrelease .Version
2
2
3
+ val slf4jLog4jOrg = " org.slf4j"
4
+ val slf4jLog4jArtifact = " slf4j-log4j12"
5
+
3
6
lazy val commonSettings = Seq (
4
7
name := " scalatest-embedded-kafka" ,
5
8
organization := " net.manub" ,
@@ -8,10 +11,9 @@ lazy val commonSettings = Seq(
8
11
parallelExecution in Test := false ,
9
12
libraryDependencies ++= Seq (
10
13
" org.scalatest" %% " scalatest" % " 2.2.5" ,
11
- " org.apache.kafka" %% " kafka" % " 0.9.0.1" ,
12
- " org.apache.zookeeper" % " zookeeper" % " 3.4.7" ,
13
- " org.apache.avro" % " avro" % " 1.7.7" ,
14
- " org.slf4j" % " log4j-over-slf4j" % " 1.7.12" ,
14
+ " org.apache.kafka" %% " kafka" % " 0.9.0.1" exclude(slf4jLog4jOrg, slf4jLog4jArtifact),
15
+ " org.apache.zookeeper" % " zookeeper" % " 3.4.7" exclude(slf4jLog4jOrg, slf4jLog4jArtifact),
16
+ " org.apache.avro" % " avro" % " 1.7.7" exclude(slf4jLog4jOrg, slf4jLog4jArtifact),
15
17
" com.typesafe.akka" %% " akka-actor" % " 2.3.14" % Test ,
16
18
" com.typesafe.akka" %% " akka-testkit" % " 2.3.14" % Test
17
19
)
0 commit comments