-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (19 loc) · 643 Bytes
/
build.sbt
File metadata and controls
26 lines (19 loc) · 643 Bytes
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
scalaVersion := "2.12.4"
val sparkVersion = "2.4.0"
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.thoughtworks.cd.de",
scalaVersion := "2.12.4",
version := "0.1.0-SNAPSHOT"
)),
name := "tw-pipeline",
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % sparkVersion,
"org.apache.spark" %% "spark-sql" % sparkVersion,
"org.apache.spark" %% "spark-streaming" % sparkVersion,
"com.typesafe" % "config" % "1.3.2",
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
"junit" % "junit" % "4.13.2" % Test,
)
)