forked from zmanio/atmos
-
Notifications
You must be signed in to change notification settings - Fork 7
/
sonatype.sbt
46 lines (38 loc) · 1.24 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
//
// Publishing to Sonatype
//
credentials += Credentials("Sonatype Nexus Repository Manager",
"oss.sonatype.org",
sys.env.getOrElse("SONATYPE_USER", default = ""),
sys.env.getOrElse("SONATYPE_PASSWORD", default = ""))
// Your profile name of the sonatype account. The default is the same with the organization value
publishMavenStyle := true
publishArtifact in Test := false
sonatypeProfileName := "io.paradoxical"
pomIncludeRepository := { _ => false }
pgpPassphrase := Some(sys.env.getOrElse("GPG_PASSWORD", default = "").toArray)
pomExtra := (
<scm>
<url>[email protected]:paradoxical-io/atmos.git</url>
<connection>scm:git:[email protected]:paradoxical-io/atmos.git</connection>
<developerConnection>scm:git:[email protected]:paradoxical-io/atmos.git</developerConnection>
</scm>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>lonnie</id>
<name>Lonnie Pryor</name>
<url>http://zman.io</url>
</developer>
<developer>
<id>devshorts</id>
<name>Anton Kropp</name>
<url>http://onoffswitch.net</url>
</developer>
</developers>
)