-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.sbt
More file actions
34 lines (27 loc) · 1.13 KB
/
build.sbt
File metadata and controls
34 lines (27 loc) · 1.13 KB
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
name := """bloggers"""
version := "1.0"
scalaVersion := "2.11.5"
resolvers ++= Seq(
"snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"releases" at "http://oss.sonatype.org/content/repositories/releases",
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"spray repo" at "http://repo.spray.io"
)
scalacOptions ++= Seq("-feature", "-unchecked", "-deprecation", "-encoding", "utf8")
javaOptions := Seq("-Xdebug", "-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000")
parallelExecution in Test := false
libraryDependencies ++= {
val sprayVersion = "1.3.1"
val akkaVersion = "2.3.5"
Seq(
"org.slf4j" % "slf4j-api" % "1.7.7",
"org.scalaz" %% "scalaz-core" % "7.1.1",
"ch.qos.logback" % "logback-core" % "1.1.2",
"ch.qos.logback" % "logback-classic" % "1.1.2",
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"com.typesafe.akka" %% "akka-persistence-experimental" % akkaVersion,
"org.scalatest" %% "scalatest" % "2.2.1" % "test"
)
}