-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
34 lines (32 loc) · 1001 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
name := "sbt-pillar"
organization := "com.chrisomeara"
version := "3.0.0"
scalaVersion := "2.10.6"
homepage := Some(url("https://github.com/comeara/sbt-pillar"))
licenses := Seq("MIT license" -> url("http://www.opensource.org/licenses/mit-license.php"))
libraryDependencies ++= Seq(
"com.chrisomeara" %% "pillar-core" % "3.0.0"
)
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 }
pomExtra := (
<scm>
<url>[email protected]:comeara/sbt-pillar.git</url>
<connection>scm:git:[email protected]:comeara/sbt-pillar.git</connection>
</scm>
<developers>
<developer>
<id>comeara</id>
<name>Chris O'Meara</name>
<url>https://github.com/comeara</url>
</developer>
</developers>)
sbtPlugin := true