-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathbuild.sbt
More file actions
28 lines (22 loc) · 746 Bytes
/
build.sbt
File metadata and controls
28 lines (22 loc) · 746 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
26
27
scalaVersion := "2.13.17"
val sparkVersion = "4.0.1"
lazy val root = (project in file("."))
.configs(IntegrationTest)
.settings(
inThisBuild(List(
organization := "com.thoughtworks.cd.de",
scalaVersion := "2.13.17",
version := "0.1.0-SNAPSHOT"
)),
Defaults.itSettings,
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.4.2",
"au.com.bytecode" % "opencsv" % "2.4",
"org.scalatest" %% "scalatest" % "3.2.12" % "it,test",
"junit" % "junit" % "4.13.2" % Test,
)
)