-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.sbt
36 lines (22 loc) · 903 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 := "Interactive Audience Analytics"
version := "0.0.1"
organization := "com.collective.analytics"
scalaVersion := "2.10.5"
scalacOptions += "-deprecation"
scalacOptions += "-feature"
licenses in ThisBuild += ("MIT", url("http://opensource.org/licenses/MIT"))
fork in Test := true
// Resolvers
resolvers += "Cloudera" at "https://repository.cloudera.com/artifactory/cloudera-repos/"
resolvers += "Collective Bintray" at "http://dl.bintray.com/collectivemedia/releases"
// Library Dependencies
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % "1.4.0",
"org.apache.spark" %% "spark-sql" % "1.4.0",
"org.scala-tools.sbinary" %% "sbinary" % "0.4.2",
"com.adroll.cantor" % "cantor" % "1.0.6"
)
// Test Dependencies
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.2.3" % "test"
)