-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
56 lines (45 loc) · 1.22 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
44
45
46
47
48
49
50
51
52
53
54
55
56
name := "treasureapp"
version := "1.0"
scalaVersion := "2.11.8"
/**
* logging
*/
//libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.7"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.5.0"
/**
* xml
*/
libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.5"
/**
* akka
*/
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http" % "10.0.6",
"com.typesafe.akka" %% "akka-actor" % "2.5.2",
"com.typesafe.akka" %% "akka-stream" % "2.5.2"
)
/**
* ScalaTest
*/
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.1" % "test"
/**
* Spark
*/
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % "2.1.1",
"org.apache.spark" %% "spark-sql" % "2.1.1",
"org.apache.spark" %% "spark-streaming" % "2.1.1",
"org.apache.spark" %% "spark-hive" % "2.1.1",
"org.apache.spark" %% "spark-mllib" % "2.1.1"
)
/**
* Date library
* https://github.com/nscala-time/nscala-time
*/
libraryDependencies += "com.github.nscala-time" %% "nscala-time" % "2.16.0"
/**
* toCSV
* https://github.com/melrief/PureCSV
*/
//resolvers += Resolver.sonatypeRepo("releases")
//libraryDependencies += "com.github.melrief" %% "purecsv" % "0.0.9"