-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
36 lines (22 loc) · 1020 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
35
36
import com.typesafe.sbt.SbtGit._
versionWithGit
git.baseVersion := "0.1.0"
name := "spray-siren"
organization := "org.restfulscala"
resolvers += "spray repo" at "http://repo.spray.io"
resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/"
libraryDependencies ++= Seq(
"com.yetu" %% "siren-scala" % "0.4.0",
"io.spray" %% "spray-httpx" % "1.3.2",
"com.typesafe.akka" %% "akka-actor" % "2.3.6" % "provided",
"io.spray" %% "spray-json" % "1.2.6" % "provided",
"com.typesafe.play" %% "play-json" % "2.3.4" % "provided",
"org.scalatest" %% "scalatest" % "2.2.1" % "test"
)
scalaVersion := "2.11.4"
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT"))
bintray.Plugin.bintraySettings
bintray.Keys.bintrayOrganization in bintray.Keys.bintray := Some("restfulscala")
bintray.Keys.packageLabels in bintray.Keys.bintray := Seq("scala", "rest", "spray")
scoverage.ScoverageSbtPlugin.instrumentSettings
org.scoverage.coveralls.CoverallsPlugin.coverallsSettings