forked from rtahboub/spark-sql-customized-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
39 lines (21 loc) · 1010 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
32
33
34
35
36
37
38
name := "LB2-playground"
version := "0.1"
resolvers += Resolver.mavenLocal
scalaVersion := "2.11.2"
scalaOrganization := "org.scala-lang.virtualized"
scalacOptions += "-language:postfixOps"
scalacOptions += "-language:implicitConversions"
scalacOptions += "-deprecation"
scalacOptions += "-DshowSuppressedErrors=true"
// tests are not thread safe
parallelExecution in Test := false
libraryDependencies += "org.apache.spark" %% "spark-core" % "2.2.1"
libraryDependencies += "org.apache.spark" %% "spark-repl" % "2.2.1"
libraryDependencies += "org.apache.spark" %% "spark-sql" % "2.2.1"
libraryDependencies += "org.apache.spark" %% "spark-catalyst" % "2.2.1"
libraryDependencies += "jline" % "jline" % "2.11"
// libraryDependencies += "com.github.melrief" %% "pureconfig" % "0.6.0"
libraryDependencies += "com.typesafe" % "config" % "1.3.1"
unmanagedJars in Compile <<= baseDirectory map { base => (base ** "*.jar").classpath }
// do not include repl scripts in assembly
sourcesInBase := false