-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
30 lines (24 loc) · 1.02 KB
/
build.sbt
File metadata and controls
30 lines (24 loc) · 1.02 KB
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
ThisBuild / version := "1.6.0"
ThisBuild / scalaVersion := "2.12.20"
lazy val root = (project in file("."))
.settings(
name := "maskala",
publishTo := Some("GitHub Maven Packages Repo" at "https://maven.pkg.github.com/mitchelllisle/maskala"),
credentials += Credentials(
"GitHub Package Registry", "maven.pkg.github.com", System.getenv("GH_USERNAME"), System.getenv("GH_TOKEN")
)
)
val sparkVersion = "3.5.6"
val circeVersion = "0.14.14"
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
"org.apache.spark" %% "spark-sql" % sparkVersion % "provided",
"org.apache.spark" %% "spark-core" % sparkVersion % "provided",
"org.apache.spark" %% "spark-hive" % sparkVersion % "provided",
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-yaml" % "1.15.0",
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"com.swoop" %% "spark-alchemy" % "1.2.1",
)
dependencyOverrides += "org.scala-lang.modules" %% "scala-xml" % "2.4.0"