-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sbt
34 lines (26 loc) · 1.07 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
34
organization in ThisBuild := "com.mediative"
name in ThisBuild := "eigenflow"
scalaVersion in ThisBuild := "2.11.11"
Jvm.`1.8`.required
// Dependencies
resolvers += Resolver.bintrayRepo("krasserm", "maven")
val akkaVersion = "2.4.19"
val kafkaVersion = "0.9.0.0"
libraryDependencies ++= Seq(
// akka
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-persistence" % akkaVersion,
"com.github.krasserm" %% "akka-persistence-cassandra" % "0.6",
// kafka
"org.apache.kafka" %% "kafka" % kafkaVersion exclude("log4j", "log4j") exclude("org.slf4j","slf4j-log4j12"),
"org.apache.kafka" % "kafka-clients" % kafkaVersion,
// json
"com.lihaoyi" %% "upickle" % "0.3.6",
// test libraries
"org.scalatest" %% "scalatest" % "2.2.6" % "test",
"org.scalacheck" %% "scalacheck" % "1.12.5" % "test",
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion % "test",
"ch.qos.logback" % "logback-classic" % "1.1.3" % "test"
)
enablePlugins(MediativeReleasePlugin, MediativeBintrayPlugin)