This repository has been archived by the owner on Sep 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.sbt
58 lines (45 loc) · 1.44 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
47
48
49
50
51
52
53
54
55
56
57
58
name := "scala-zeromq"
organization := "com.mdialog"
version := "1.2.0"
scalaVersion := "2.11.7"
parallelExecution := false
scalacOptions ++= Seq("-unchecked", "-deprecation", "-language:postfixOps")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3.14",
"org.scalatest" %% "scalatest" % "2.2.6" % "test",
"com.typesafe.akka" %% "akka-testkit" % "2.3.14" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
)
//publish with: activator '+ publish-signed'
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>http://www.github.com/mdialog/scala-zeromq</url>
<licenses>
<license>
<name>Apache2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:mdialog/scala-zeromq</url>
<connection>scm:git:[email protected]:jasongoodwin/better-java-monads.git</connection>
</scm>
<developers>
<developer>
<id>mdialog</id>
<name>mDialog</name>
<url>http://www.github.com/mdialog</url>
</developer>
</developers>
)
credentials += Credentials(Path.userHome / ".nexuscredentials")