-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.sbt
37 lines (28 loc) · 859 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
37
name := "scala-workshop"
version := "0.1.0-SNAPSHOT"
organization := "com.yanns"
scalaVersion := "2.11.8"
scalacOptions ++= Seq(
"-Xmax-classfile-name", "128",
"-deprecation",
"-unchecked",
"-feature")
javacOptions ++= Seq(
"-deprecation",
"-Xlint:unchecked")
libraryDependencies ++= Seq(
"joda-time" % "joda-time" % "2.9.3" ,
"org.joda" % "joda-convert" % "1.8.1" ,
"org.scala-lang.modules" %% "scala-async" % "0.9.5" ,
"com.typesafe.akka" %% "akka-actor" % "2.4.3")
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.2.6" ,
"org.mockito" % "mockito-core" % "1.10.19" ,
"org.scalacheck" %% "scalacheck" % "1.12.5"
).map (_ % "test")
//lazy val macros = project
//
//lazy val root =
// project.in( file(".") )
// .dependsOn(macros)
fork in run := true