-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
publish.sbt
34 lines (27 loc) · 897 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
34
ThisBuild / publishMavenStyle := true
ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / Test / publishArtifact := false
ThisBuild / publishTo := sonatypePublishToBundle.value
ThisBuild / sonatypeProfileName := "me.shadaj"
ThisBuild / sonatypeCredentialHost := "oss.sonatype.org"
ThisBuild / pomExtra :=
<url>https://github.com/shadaj/slinky</url>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/shadaj/slinky.git</url>
<connection>https://github.com/shadaj/slinky.git</connection>
</scm>
<developers>
<developer>
<id>shadaj</id>
<name>Shadaj Laddad</name>
<url>http://shadaj.me</url>
</developer>
</developers>
Global / useGpgPinentry := true