-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpublish.sbt
32 lines (27 loc) · 826 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
publishMavenStyle := true
publishTo <<= version { (v: String) =>
if (v.trim.endsWith("SNAPSHOT")) Some(Opts.resolver.sonatypeSnapshots) else Some(Opts.resolver.sonatypeStaging)
}
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra := (
<url>https://github.com/velvia/ScalaStorm</url>
<licenses>
<license>
<name>Apache</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:velvia/ScalaStorm.git</url>
<connection>scm:git:[email protected]:velvia/ScalaStorm.git</connection>
</scm>
<developers>
<developer>
<id>velvia</id>
<name>Evan Chan</name>
<url>http://github.com/velvia</url>
</developer>
</developers>)
releaseSettings