-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
32 lines (23 loc) · 1.07 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
name := "root"
version := "1.0"
libraryDependencies ++= Seq(
// other dependencies here
// pick and choose:
"org.scalanlp" %% "breeze-math" % "0.1",
"org.scalanlp" %% "breeze-learn" % "0.1",
"org.scalanlp" %% "breeze-process" % "0.1",
"org.scalanlp" %% "breeze-viz" % "0.1",
"org.spark-project" %% "spark-core" % "0.7.0"
)
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % "test"
//libraryDependencies += "net.liftweb" %% "lift-json" % "2.5-RC2"
libraryDependencies += "com.github.scopt" %% "scopt" % "3.0.0"
resolvers += "sonatype-public" at "https://oss.sonatype.org/content/groups/public"
resolvers ++= Seq(
// other resolvers here
"spray repo" at "http://repo.spray.io",
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
// if you want to use snapshot builds (currently 0.2-SNAPSHOT), use this.
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
)
scalaVersion := "2.9.2"