-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
46 lines (36 loc) · 1.09 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
organization := "com.kifi"
name := "reactivelock"
version := "1.0.0"
scalaVersion := "2.11.6"
libraryDependencies += "org.specs2" %% "specs2-core" % "3.6" % "test"
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
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 := (
<url>https://github.com/kifi/ReactiveLock</url>
<licenses>
<license>
<name>MIT</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:kifi/ReactiveLock.git</url>
<connection>scm:git:[email protected]:kifi/ReactiveLock.git</connection>
</scm>
<developers>
<developer>
<id>stkem</id>
<name>Stephen Kemmerling</name>
<url>https://github.com/stkem</url>
</developer>
</developers>)