-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
26 lines (18 loc) · 889 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
lazy val scala212 = "2.12.19"
lazy val supportedScalaVersions = List(scala212)
organization := "be.icteam"
name := "adobe-analytics-datafeed-datasource"
ThisBuild / homepage := Some(url("https://github.com/timvw/adobe-analytics-datafeed-datasource"))
ThisBuild / licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
ThisBuild / developers := List(Developer("timvw", "Tim Van Wassenhove", "[email protected]", url("https://timvw.be")))
ThisBuild / javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
ThisBuild / scalaVersion := scala212
ThisBuild / crossScalaVersions := supportedScalaVersions
val sparkVersion = "3.5.1"
ThisBuild / libraryDependencies ++= List(
"org.apache.spark" %% "spark-sql" % sparkVersion
)
val scalaTestVersion = "3.2.18"
ThisBuild / libraryDependencies ++= List(
"org.scalatest" %% "scalatest" % scalaTestVersion % Test
)