-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
27 lines (19 loc) · 866 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
name := """psmod1"""
organization := """com.escalesoft"""
version := "0.0.3-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"
// Provides support for Maven style project sources organisation (src/main/scala src/main/java src/main/resources ...)
//scalaSource in Compile := baseDirectory.value / "src"
libraryDependencies ++= Seq(
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