forked from jcazevedo/phalanges
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
34 lines (30 loc) · 906 Bytes
/
build.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
scalaVersion in ThisBuild := "2.10.1"
publishMavenStyle := true
publishTo <<= version { (v: String) =>
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
publishArtifact in Test := false
pomExtra := (
<url>http://timesprint.com/livefx</url>
<licenses>
<license>
<name>BSD-style</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:newhoggy/livefx.git</url>
<connection>scm:git:[email protected]:newhoggy/livefx.git</connection>
</scm>
<developers>
<developer>
<id>newhoggy</id>
<name>John Ky</name>
<url>http://timesprint.com</url>
</developer>
</developers>)