forked from douglaz/ignition-core
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.sbt
32 lines (17 loc) · 1.01 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
name := "Ignition-Core"
version := "1.0"
scalaVersion := "2.11.12"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Xfatal-warnings", "-Xlint", "-Ywarn-dead-code", "-Xmax-classfile-name", "130")
// Because we can't run two spark contexts on same VM
parallelExecution in Test := false
test in assembly := {}
libraryDependencies += "org.apache.spark" %% "spark-sql" % "2.4.3" % "provided"
libraryDependencies += "org.apache.hadoop" % "hadoop-client" % "2.7.6" % "provided"
libraryDependencies += "org.apache.hadoop" % "hadoop-aws" % "2.7.6" % "provided"
libraryDependencies += "com.amazonaws" % "aws-java-sdk" % "1.7.4" % "provided"
libraryDependencies += "org.scalaz" %% "scalaz-core" % "7.2.27"
libraryDependencies += "com.github.scopt" %% "scopt" % "3.6.0"
libraryDependencies += "joda-time" % "joda-time" % "2.9.9"
libraryDependencies += "org.joda" % "joda-convert" % "1.8.2"
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.25"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.3"