-
Notifications
You must be signed in to change notification settings - Fork 1
/
publish.sbt
35 lines (30 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
publishMavenStyle := true
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")
}
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
sonatypeProfileName := "com.pigumer.sbt.cloud"
pomExtra := (
<url>https://github.com/PigumerGroup/sbt-aws-cloudformation</url>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<scm>
<url>https://github.com/PigumerGroup/sbt-aws-cloudformation</url>
<connection>https://github.com/PigumerGroup/sbt-aws-cloudformation.git</connection>
</scm>
<developers>
<developer>
<id>takesection</id>
<name>Shigeki Shoji</name>
<url>https://github.com/takesection</url>
</developer>
</developers>)