-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
executable file
·34 lines (26 loc) · 979 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
28
29
30
31
32
33
34
name := """respondeco"""
version := "0.1-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.7"
libraryDependencies ++= Seq(
jdbc,
cache,
ws,
specs2 % Test,
evolutions,
"com.typesafe.play" %% "anorm" % "2.5.3",
"jp.t2v" %% "play2-auth" % "0.14.1",
"org.typelevel" %% "cats" % "0.8.1",
"org.yaml" % "snakeyaml" % "1.17",
"de.mkammerer" % "argon2-jvm" % "2.1",
"se.digiplant" %% "play-res" % "1.2.0",
// Image processing
"com.sksamuel.scrimage" %% "scrimage-core" % "2.1.7",
"com.sksamuel.scrimage" %% "scrimage-io-extra" % "2.1.7",
"com.sksamuel.scrimage" %% "scrimage-filters" % "2.1.7"
)
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
fork in run := false