-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (17 loc) · 722 Bytes
/
build.sbt
File metadata and controls
26 lines (17 loc) · 722 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
ThisBuild / version := "0.1.0"
ThisBuild / scalaVersion := "2.12.15"
organization := "ru.mardaunt"
licenses := Seq("APL2" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
description := "The library helps to link Scala Spark and PaySpark app"
import xerial.sbt.Sonatype._
sonatypeProjectHosting := Some(GitHubHosting("Mardaunt", "PySparkWrapper", "tepeshman@gmail.com"))
publishTo := sonatypePublishToBundle.value
sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
lazy val root = (project in file("."))
.settings(
name := "PySparkWrapper"
)
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-sql" % "3.2.1" % Provided
)