-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.sbt
46 lines (36 loc) · 1.1 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
name := "mario"
version := "0.1.0"
organization := "com.intentmedia.mario"
homepage := Some(url("https://github.com/intentmedia/mario"))
scalaVersion := "2.11.6"
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.4" % "test"
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
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra := (
<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]:intentmedia/mario.git</url>
<connection>scm:git:[email protected]:intentmedia/mario.git</connection>
</scm>
<developers>
<developer>
<id>intentmedia</id>
<name>Intent Media</name>
<url>http://intentmedia.com</url>
</developer>
</developers>
)