-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
27 lines (19 loc) · 810 Bytes
/
build.sbt
File metadata and controls
27 lines (19 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import Dependencies._
name := "kafka-streams-base"
version := "0.1"
organization := "fr.s3ni0r"
scalaVersion := Versions.Scala_2_12_Version
scalacOptions := Seq("-Xexperimental", "-unchecked", "-deprecation", "-Ywarn-unused-import")
parallelExecution in Test := false
libraryDependencies ++= Seq(
kafkaStreams excludeAll(ExclusionRule("org.slf4j", "slf4j-log4j12"), ExclusionRule("org.apache.zookeeper", "zookeeper")),
scalaLogging % "test",
logback % "test",
kafka % "test" excludeAll(ExclusionRule("org.slf4j", "slf4j-log4j12"), ExclusionRule("org.apache.zookeeper", "zookeeper")),
curator % "test",
scalaTest % "test",
algebird % "test",
chill % "test",
mockedStreams % "test"
)
testFrameworks += new TestFramework("minitest.runner.Framework")