-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
42 lines (33 loc) · 1.39 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
name := """pathfinder-server"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala, PlayEbean, PlayJava)
scalaVersion := "2.11.7"
libraryDependencies ++= Seq(
jdbc,
javaJdbc,
cache,
ws,
filters,
specs2 % Test,
"org.avaje.ebeanorm" % "avaje-ebeanorm" % "6.12.3",
"postgresql" % "postgresql" % "9.1-901-1.jdbc4",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"org.scalatestplus" %% "play" % "1.4.0-M3" % "test",
"org.postgresql" % "postgresql" % "9.4-1203-jdbc42",
"com.jolbox" % "bonecp" % "0.8.0.RELEASE",
"com.typesafe.akka" %% "akka-testkit" % "2.4.1",
"com.typesafe.akka" %% "akka-slf4j" % "2.4.1",
"com.nimbusds" % "nimbus-jose-jwt" % "4.12"
)
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-q", "-a")
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
// Play provides two styles of routers, one expects its actions to be injected, the
// other, legacy style, accesses its actions statically.
routesGenerator := InjectedRoutesGenerator
// Docker configuration
packageName in Docker := "pathfinder-server"
version in Docker := "0.4.6"
maintainer in Docker := "Pathfinder Team"
dockerRepository := Some("beta.gcr.io/phonic-aquifer-105721")
dockerExposedPorts := Seq(9000, 9443)
scoverage.ScoverageSbtPlugin.ScoverageKeys.coverageExcludedPackages := "<empty>;controllers\\..*Reverse.*;router\\..*Routes.*"