-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
33 lines (24 loc) · 1.02 KB
/
build.sbt
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
28
29
30
31
32
33
import scalariform.formatter.preferences._
name := """reactive-kafka-scala"""
version := "1.0"
scalaVersion := "2.11.7"
enablePlugins(JavaAppPackaging)
net.virtualvoid.sbt.graph.Plugin.graphSettings
libraryDependencies ++= Seq(
"org.scalaz" %% "scalaz-core" % "7.1.4",
"com.softwaremill.reactivekafka" %% "reactive-kafka-core" % "0.8.1",
"com.typesafe.play" %% "play-json" % "2.4.3",
"com.github.scopt" %% "scopt" % "3.3.0",
"ch.qos.logback" % "logback-classic" % "1.1.3",
"org.slf4j" % "log4j-over-slf4j" % "1.7.12",
"com.typesafe.akka" %% "akka-slf4j" % "2.3.12",
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
"com.typesafe.akka" %% "akka-testkit" % "2.3.12" % "test"
)
scalariformSettings
ScalariformKeys.preferences := ScalariformKeys.preferences.value
.setPreference(AlignSingleLineCaseStatements, true)
.setPreference(AlignSingleLineCaseStatements.MaxArrowIndent, 100)
.setPreference(DoubleIndentClassDeclaration, true)
.setPreference(PreserveDanglingCloseParenthesis, true)
fork in run := true