-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.sbt
35 lines (27 loc) · 1.25 KB
/
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
34
35
import xerial.sbt.Sonatype.sonatype01
ThisBuild / organization := "org.twelvehart"
ThisBuild / organizationName := "Twelve Hart Industries"
ThisBuild / organizationHomepage := Some(url("https://twelvehart.org"))
sonatypeBundleDirectory := (ThisBuild / baseDirectory).value / target.value.getName / "sonatype-staging" / (ThisBuild / version).value
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/ASRagab/unstructured4s"),
"scm:git:[email protected]:ASRagab/unstructured4s.git"
)
)
ThisBuild / developers := List(
Developer(
id = "ASRagab",
name = "Ahmad Ragab",
email = "[email protected]",
url = url("https://github.com/ASRagab")
)
)
ThisBuild / description := "Unstructured4s is a Scala library for working with unstructured.io API"
ThisBuild / licenses := List("The MIT License" -> url("https://opensource.org/license/mit/"))
ThisBuild / homepage := Some(url("https://unstructured4s.twelvehart.org/"))
// Remove all additional repository other than Maven Central from POM
ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / sonatypeCredentialHost := sonatype01
ThisBuild / sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
ThisBuild / versionScheme := Some("early-semver")