-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
28 lines (21 loc) · 970 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
name := "datawrangler"
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"
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"