-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathbuild.sbt
33 lines (21 loc) · 848 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
import _root_.sbt.Keys._
name := "scala"
version := "1.0"
scalaVersion := "2.11.8"
scalacOptions := Seq(
"-encoding", "utf8",
"-feature",
"-unchecked",
"-deprecation",
"-target:jvm-1.8",
"-Ymacro-debug-lite",
"-language:_",
"-Xexperimental")
libraryDependencies += "org.scalactic" %% "scalactic" % "2.2.6"
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.6" % "test"
libraryDependencies += "org.mockito" % "mockito-core" % "1.9.5" % "test"
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.12.5" % "test"
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.15"
libraryDependencies += "com.typesafe.akka" %% "akka-remote" % "2.3.15"
libraryDependencies += "com.typesafe.akka" %% "akka-slf4j" % "2.3.15"
libraryDependencies += "com.typesafe.akka" %% "akka-testkit" % "2.3.15" % "test"