-
Notifications
You must be signed in to change notification settings - Fork 56
/
build.sbt
43 lines (33 loc) · 1.11 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
name := "gu-who"
version := "1.0-SNAPSHOT"
scalaVersion := "2.11.12"
updateOptions := updateOptions.value.withCachedResolution(true)
buildInfoKeys := Seq[BuildInfoKey](
name,
BuildInfoKey.constant("gitCommitId", Option(System.getenv("SOURCE_VERSION")) getOrElse(try {
"git rev-parse HEAD".!!.trim
} catch {
case e: Exception => "unknown"
}))
)
buildInfoPackage := "app"
lazy val root = (project in file(".")).enablePlugins(PlayScala, BuildInfoPlugin)
resolvers ++= Seq(
// Resolver.mavenLocal,
Resolver.sonatypeRepo("releases")
)
libraryDependencies ++= Seq(
cache,
filters,
ws,
"com.typesafe.akka" %% "akka-agent" % "2.3.2",
"org.webjars" % "bootstrap" % "3.3.5",
"com.adrianhurt" %% "play-bootstrap3" % "0.4.5-P24",
"com.madgag" %% "play-git-hub" % "2.5",
"com.github.nscala-time" %% "nscala-time" % "2.32.0",
"com.github.scala-incubator.io" %% "scala-io-file" % "0.4.3-1",
"com.madgag.scala-git" %% "scala-git-test" % "3.5" % "test",
"org.scalatestplus" %% "play" % "1.4.0" % "test"
)
sources in (Compile,doc) := Seq.empty
publishArtifact in (Compile, packageDoc) := false