forked from ClaireNeveu/macrame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonatype.sbt
21 lines (15 loc) · 894 Bytes
/
sonatype.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import xerial.sbt.Sonatype._
sonatypeProfileName := "com.kinja"
publishMavenStyle := true
// useGpg := true
Global / description := "Macrame provides macro-based replacements for parts of the Scala standard library."
Global / homepage := Some(url("https://github.com/gawkermedia/macrame"))
Global / licenses := Seq("BSD 3-Clause" -> url("https://github.com/gawkermedia/macrame/blob/master/LICENSE"))
Global / sonatypeProjectHosting := Some(GitHubHosting("gawkermedia", "macrame", ""))
Global / developers := List(
Developer(id = "ClaireNeveu", name = "Claire Neveu", email = "", url = url("https://github.com/ClaireNeveu"))
)
Global / credentials += Credentials(Path.userHome / ".ivy2" / ".sonatype")
pgpSecretRing := file(System.getProperty("SEC_RING", ""))
pgpPublicRing := file(System.getProperty("PUB_RING", ""))
pgpPassphrase := Some(Array(System.getProperty("PGP_PASS", ""): _*))