-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
64 lines (45 loc) · 1.46 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
59
60
61
62
63
64
import SonatypeKeys._
import sbt.Keys._
sonatypeSettings
name := "reactive-gremlin"
version := "0.0.4-SNAPSHOT"
organization := "io.surfkit"
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies ++= deps
scalaVersion := "2.11.8"
fork := true
lazy val deps = {
val akkaV = "2.4.8"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-http-experimental" % akkaV,
"com.typesafe.play" %% "play-json" % "2.4.4"
)
}
dependencyOverrides ++= Set(
"com.fasterxml.jackson.core" % "jackson-databind" % "2.4.4"
)
homepage := Some(url("http://www.surfkit.io/"))
licenses += ("MIT License", url("http://www.opensource.org/licenses/mit-license.php"))
scmInfo := Some(ScmInfo(
url("https://github.com/coreyauger/reactive-gremlin"),
"scm:git:git@github.com/coreyauger/reactive-gremlin.git",
Some("scm:git:git@github.com:coreyauger/reactive-gremlin.git")))
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")
}
pomExtra := (
<developers>
<developer>
<id>coreyauger</id>
<name>Corey Auger</name>
<url>https://github.com/coreyauger/</url>
</developer>
</developers>
)
pomIncludeRepository := { _ => false }