-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsonatype.sbt
35 lines (30 loc) · 1015 Bytes
/
sonatype.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
// Your profile name of the sonatype account. The default is the same with the organization value
sonatypeProfileName := "dev.nomadblacky"
// To sync with Maven central, you need to supply the following information:
publishMavenStyle := true
// License of your choice
licenses := Seq(
"MIT" -> url("https://github.com/NomadBlacky/scaladog/blob/master/LICENSE/")
)
// Where is the source code hosted
import xerial.sbt.Sonatype._
sonatypeProjectHosting := Some(
GitHubHosting("NomadBlacky", "scaladog", "[email protected]")
)
// or if you want to set these fields manually
homepage := Some(url("https://github.com/NomadBlacky/scaladog"))
scmInfo := Some(
ScmInfo(
url("https://github.com/NomadBlacky/scaladog"),
"scm:[email protected]:NomadBlacky/scaladog.git"
)
)
developers := List(
Developer(
id = "NomadBlacky",
name = "Takumi Kadowaki",
email = "[email protected]",
url = url("https://www.nomadblacky.dev")
)
)
ThisBuild / publishTo := sonatypePublishToBundle.value