-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
25 lines (18 loc) · 744 Bytes
/
build.sbt
File metadata and controls
25 lines (18 loc) · 744 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
name := """psmaster1"""
organization := """com.escalesoft"""
version := "0.0.2-SNAPSHOT"
// disablePlugins(PlayLayoutPlugin) activates standard SBT Maven layout as documented at:
// https://playframework.com/documentation/2.4.x/Anatomy
lazy val root = (project in file(".")).enablePlugins(PlayScala).disablePlugins(PlayLayoutPlugin)
scalaVersion := "2.11.7"
libraryDependencies ++= Seq(
"com.escalesoft" %% "psmod1" % "0.0.3-SNAPSHOT",
jdbc,
cache,
ws,
specs2 % Test
)
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