forked from chaordic/ignition-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
43 lines (22 loc) · 1.25 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
32
33
34
35
36
37
38
39
40
41
42
43
name := "Ignition-core"
version := "0.2"
scalaVersion := "2.10.4"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Xfatal-warnings")
//scalacOptions += "-target:jvm-1.7"
//scalacOptions += "-print" // Just for debugging purposes
ideaExcludeFolders += ".idea"
ideaExcludeFolders += ".idea_modules"
// Because we can't run two spark contexts on same VM
parallelExecution in Test := false
libraryDependencies ++= Seq()
libraryDependencies += ("org.apache.spark" %% "spark-core" % "1.2.1" % "provided").exclude("org.apache.hadoop", "hadoop-client")
libraryDependencies += ("org.apache.hadoop" % "hadoop-client" % "1.0.4" % "provided")
libraryDependencies += "com.github.nscala-time" %% "nscala-time" % "0.8.0"
libraryDependencies += "org.scalatest" % "scalatest_2.10" % "2.0" % "test"
libraryDependencies += "org.scalaj" %% "scalaj-http" % "0.3.16"
libraryDependencies += "org.scalaz" %% "scalaz-core" % "7.0.6"
libraryDependencies += "com.github.scopt" %% "scopt" % "3.2.0"
libraryDependencies += "net.java.dev.jets3t" % "jets3t" % "0.7.1"
resolvers += "Akka Repository" at "http://repo.akka.io/releases/"
resolvers += "Sonatype OSS Releases" at "http://oss.sonatype.org/content/repositories/releases/"
resolvers += Resolver.sonatypeRepo("public")