-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
31 lines (26 loc) · 1.16 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
course := "capstone"
assignment := "observatory"
scalaVersion := "2.12.8"
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-encoding", "UTF-8",
"-unchecked",
"-Xlint",
)
libraryDependencies ++= Seq(
"com.sksamuel.scrimage" %% "scrimage-core" % "2.1.8", // for visualization
// You don’t *have to* use Spark, but in case you want to, we have added the dependency
"org.apache.spark" %% "spark-sql" % "2.4.3",
// You don’t *have to* use akka-stream, but in case you want to, we have added the dependency
"com.typesafe.akka" %% "akka-stream" % "2.6.0",
"com.typesafe.akka" %% "akka-stream-testkit" % "2.6.0" % Test,
// You don’t *have to* use Monix, but in case you want to, we have added the dependency
"io.monix" %% "monix" % "2.3.3",
// You don’t *have to* use fs2, but in case you want to, we have added the dependency
"co.fs2" %% "fs2-io" % "1.0.5",
"org.scalacheck" %% "scalacheck" % "1.13.5" % Test,
"com.novocode" % "junit-interface" % "0.11" % Test
)
testOptions in Test += Tests.Argument(TestFrameworks.JUnit, "-a", "-v", "-s")
parallelExecution in Test := false // So that tests are executed for each milestone, one after the other