-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.sbt
36 lines (15 loc) · 931 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
name := "strata"
version := "1.0"
scalaVersion := "2.11.7"
libraryDependencies += "com.github.scopt" %% "scopt" % "3.3.0"
libraryDependencies += "pl.project13.scala" %% "rainbow" % "0.2"
libraryDependencies += "commons-io" % "commons-io" % "2.3"
libraryDependencies += "org.json4s" %% "json4s-native" % "3.3.0.RC6"
libraryDependencies += "org.json4s" %% "json4s-ext" % "3.3.0.RC6"
libraryDependencies += "com.github.nscala-time" %% "nscala-time" % "2.2.0"
libraryDependencies += "com.github.tototoshi" %% "scala-csv" % "1.2.2"
libraryDependencies += "com.assembla.scala-incubator" %% "graph-core" % "1.9.4"
libraryDependencies += "com.assembla.scala-incubator" %% "graph-dot" % "1.10.0"
libraryDependencies += "com.jsuereth" %% "scala-arm" % "1.4"
resolvers += Resolver.sonatypeRepo("public")
scalacOptions in ThisBuild ++= Seq("-unchecked", "-deprecation", "-feature", "–Xcheck-null", "–Xfatal-warnings")