forked from krasserm/akka-persistence-kafka
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
28 lines (18 loc) · 897 Bytes
/
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
organization := "com.github.krasserm"
name := "akka-persistence-kafka"
version := "0.5-SNAPSHOT"
scalaVersion := "2.11.6"
crossScalaVersions := Seq("2.10.4", "2.11.6")
scalacOptions += "-target:jvm-1.7"
javacOptions ++= Seq("-source", "1.7", "-target", "1.7")
resolvers += "krasserm at bintray" at "http://dl.bintray.com/krasserm/maven"
parallelExecution in Test := false
publishArtifact in Test := true
libraryDependencies ++= Seq(
"com.google.protobuf" % "protobuf-java" % "2.5.0",
"com.typesafe.akka" %% "akka-persistence-experimental" % "2.3.11",
"com.github.krasserm" %% "akka-persistence-testkit" % "0.3.4" % Test,
"commons-io" % "commons-io" % "2.4" % Test,
"org.apache.kafka" %% "kafka" % "0.8.2.1",
"org.apache.curator" % "curator-test" % "2.7.1" % Test
)