-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
34 lines (24 loc) · 1.11 KB
/
build.sbt
File metadata and controls
34 lines (24 loc) · 1.11 KB
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 := "Resize-image-demo-app"
version := "0.11.0"
scalaVersion := "2.11.7"
play.twirl.sbt.Import.TwirlKeys.templateFormats ++= Map("stream" -> "com.ybrikman.ping.scalaapi.bigpipe.HtmlStreamFormat")
play.twirl.sbt.Import.TwirlKeys.templateImports ++= Vector("com.ybrikman.ping.scalaapi.bigpipe.HtmlStream",
"com.ybrikman.ping.scalaapi.bigpipe._")
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
libraryDependencies ++= Seq(
ws,
cache,
filters,
javaWs,
"javax.inject" % "javax.inject" % "1",
"org.reactivemongo" %% "play2-reactivemongo" % "0.11.1.play24",
"org.mockito" % "mockito-core" % "1.9.5" % "test",
"com.sksamuel.scrimage" %% "scrimage-core" % "2.0.1",
"com.sksamuel.scrimage" %% "scrimage-io" % "2.0.1",
"org.apache.xmlgraphics" % "batik-codec" % "1.8",
"com.ybrikman.ping" %% "big-pipe" % "0.0.12",
"joda-time" % "joda-time" % "2.8.1",
"org.joda" % "joda-convert" % "1.7"
)
routesGenerator := InjectedRoutesGenerator
lazy val root = (project in file(".")).enablePlugins(PlayScala)