forked from krasserm/akka-persistence-cassandra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
37 lines (27 loc) · 938 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
29
30
31
32
33
34
35
36
organization := "com.github.krasserm"
name := "akka-persistence-cassandra"
version := "0.4-SNAPSHOT"
scalaVersion := "2.11.6"
crossScalaVersions := Seq("2.10.4", "2.11.6")
fork in Test := true
javaOptions in Test += "-Xmx2500M"
scalacOptions ++= Seq(
"-encoding", "UTF-8",
"-feature",
"-unchecked",
"-deprecation",
//"-Xfatal-warnings",
"-Xlint",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Xfuture"
)
parallelExecution in Test := false
libraryDependencies ++= Seq(
"com.datastax.cassandra" % "cassandra-driver-core" % "2.1.5",
"com.typesafe.akka" %% "akka-persistence-experimental" % "2.3.9",
"com.typesafe.akka" %% "akka-persistence-tck-experimental" % "2.3.9" % "test",
"org.scalatest" %% "scalatest" % "2.1.4" % "test",
"org.cassandraunit" % "cassandra-unit" % "2.0.2.2" % "test"
)