-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpublish.sbt
30 lines (25 loc) · 851 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
publishMavenStyle in ThisBuild := true
pomIncludeRepository in ThisBuild := { _ => false }
publishArtifact in Test in ThisBuild := false
publishTo in ThisBuild := sonatypePublishToBundle.value
pomExtra in ThisBuild :=
<url>https://github.com/shadaj/slinky-styled-components</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-styled-components.git</url>
<connection>https://github.com/shadaj/slinky-styled-components.git</connection>
</scm>
<developers>
<developer>
<id>shadaj</id>
<name>Shadaj Laddad</name>
<url>http://shadaj.me</url>
</developer>
</developers>
Global / useGpgPinentry := true