-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpublish.sbt
33 lines (28 loc) · 1018 Bytes
/
publish.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
27
28
29
30
31
32
33
ThisBuild / organization := "net.xmacs.liga"
ThisBuild / organizationHomepage := Some(url("https://github.com/liga-ai"))
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/liga-ai/liga"),
"scm:[email protected]:liga-ai/liga.git"
)
)
ThisBuild / developers := List(
Developer(
id = "da-tubi",
name = "Darcy Shen",
email = "[email protected]",
url = url("https://github.com/da-tubi")
)
)
ThisBuild / description := "Liga: the ML-Enhanced Spark SQL"
ThisBuild / licenses := List(
"Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt")
)
ThisBuild / homepage := Some(url("https://github.com/liga-ai/liga"))
// Remove all additional repository other than Maven Central from POM
ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / publishMavenStyle := true
publishTo := sonatypePublishToBundle.value
sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
sonatypeProfileName := "net.xmacs.liga"