-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
43 lines (28 loc) · 1.02 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 := "algebird-intro"
version := "1.0"
scalaVersion := "2.11.8"
val akkaVersion = "2.4.9"
val sparkVersion = "2.0.0"
/* dependencies */
libraryDependencies ++= Seq (
// -- Testing --
"org.scalatest" %% "scalatest" % "2.2.6" % "test"
// -- Logging --
,"ch.qos.logback" % "logback-classic" % "1.1.2"
,"com.typesafe.scala-logging" %% "scala-logging" % "3.1.0"
// -- Akka --
,"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test"
,"com.typesafe.akka" %% "akka-actor" % akkaVersion
,"com.typesafe.akka" %% "akka-slf4j" % akkaVersion
// --Akka Streams
,"com.typesafe.akka" %% "akka-stream" % akkaVersion
,"org.apache.spark" %% "spark-streaming" % sparkVersion
,"org.apache.spark" %% "spark-sql" % sparkVersion
,"com.twitter" %% "algebird-core" % "0.13.0"
// -- Config --
,"com.typesafe" % "config" % "1.2.1"
,"org.scalacheck" %% "scalacheck" % "1.12.2" % "test"
// prob
,"com.github.wookietreiber" %% "scala-chart" % "0.5.1"
,"nz.ac.waikato.cms.weka" % "weka-stable" % "3.8.0"
)