-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
34 lines (20 loc) · 817 Bytes
/
build.sbt
File metadata and controls
34 lines (20 loc) · 817 Bytes
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
import com.typesafe.sbt.SbtGit._
import play.PlayScala
versionWithGit
git.baseVersion := "0.3.0"
name := "play-siren"
organization := "org.restfulscala"
libraryDependencies ++= Seq(
"com.yetu" %% "siren-scala" % "0.4.0",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"org.scalatestplus" %% "play" % "1.2.0" % "test"
)
val root = project in file(".") enablePlugins PlayScala
scalaVersion := "2.11.4"
StandardLayout.settings
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", "play")
scoverage.ScoverageSbtPlugin.instrumentSettings
org.scoverage.coveralls.CoverallsPlugin.coverallsSettings