-
Notifications
You must be signed in to change notification settings - Fork 1
/
publish.sbt
36 lines (32 loc) · 973 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
35
36
publishMavenStyle := true
sonatypeProfileName := "com.github.jkugiya"
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
publishMavenStyle := true
Test / publishArtifact := false
pomIncludeRepository := { _ => false }
pomExtra := (
<url>https://github.com/jkugiya/aws-v4-signer-scala</url>
<licenses>
<license>
<name>Apatch 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/jkugiya/aws-v4-signer-scala.git</url>
<connection>scm:git:git@github.com:jkugiya/aws-v4-signer-scala.git</connection>
</scm>
<developers>
<developer>
<id>jkugiya</id>
<name>Jiro Kugiya</name>
<url>https://github.com/jkugiya</url>
</developer>
</developers>)