forked from weaviate/spark-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
22 lines (18 loc) · 806 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
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.12.17"
lazy val root = (project in file("."))
.settings(
name := "weaviate-spark-connector",
idePackagePrefix := Some("io.weaviate.spark")
)
ThisBuild / scalafixDependencies += "org.scalalint" %% "rules" % "0.1.4"
lazy val sparkVersion = "3.3.1"
lazy val weaviateClientVersion = "3.4.2"
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.14" % "test",
"org.apache.spark" %% "spark-core" % sparkVersion % "provided,test",
"org.apache.spark" %% "spark-sql" % sparkVersion % "provided,test",
"org.apache.spark" %% "spark-catalyst" % sparkVersion % "provided,test",
"org.scala-lang.modules" %% "scala-collection-compat" % "2.8.1",
"technology.semi.weaviate" % "client" % weaviateClientVersion
)