-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
34 lines (22 loc) · 918 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
name := "scala-utilities"
version := "0.1"
scalaVersion := "2.11.5"
libraryDependencies += "net.ruippeixotog" %% "scala-scraper" % "2.0.0"
// for akka dependencies
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.4.16",
"com.typesafe.akka" %% "akka-slf4j" % "2.4.16",
"com.typesafe.akka" %% "akka-remote" % "2.4.16",
"com.typesafe.akka" %% "akka-agent" % "2.4.16",
"com.typesafe.akka" %% "akka-testkit" % "2.4.16" % "test"
)
// for spark scala worksheet integration
// spark needs scala 2.11.X
libraryDependencies += "org.apache.spark" %% "spark-core" % "2.2.1"
// for scala test
// specify this dependency is for test to make ensime not show
// scala test as errors in the editor o
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "3.0.5" % "test"
// Mysql driver
val mysql = "mysql" % "mysql-connector-java" % "5.1.12"
libraryDependencies += mysql