-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbuild.sbt
47 lines (37 loc) · 1.61 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
35
36
37
38
39
40
41
42
43
44
45
46
47
name := "activator-akka-cassandra"
version := "1.1"
scalaVersion := "2.10.4"
resolvers += "spray repo" at "http://repo.spray.io"
resolvers += "spray nightlies" at "http://nightlies.spray.io"
libraryDependencies ++= {
val akkaVersion = "2.3.6"
val sprayVersion = "1.3.1"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"io.spray" % "spray-can" % sprayVersion,
"io.spray" % "spray-client" % sprayVersion,
"io.spray" % "spray-routing" % sprayVersion,
"io.spray" %% "spray-json" % "1.3.0",
"com.datastax.cassandra" % "cassandra-driver-core" % "2.1.1" exclude("org.xerial.snappy", "snappy-java"),
"org.xerial.snappy" % "snappy-java" % "1.1.1.3",
"org.scala-lang" % "scala-reflect" % "2.10.4",
"org.specs2" %% "specs2" % "2.4.6" % "test",
"io.spray" % "spray-testkit" % sprayVersion % "test",
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"com.novocode" % "junit-interface" % "0.11" % "test->default"
)
}
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-Xlint",
"-Ywarn-dead-code",
"-language:_",
"-target:jvm-1.7",
"-encoding", "UTF-8"
)
parallelExecution in Test := false
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v")
Revolver.settings : Seq[sbt.Def.Setting[_]]
net.virtualvoid.sbt.graph.Plugin.graphSettings