-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
32 lines (26 loc) · 1.07 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
name := """rate-my-area"""
organization := "io.stuartp"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala, SbtWeb)
scalaVersion := "2.12.2"
libraryDependencies ++= Seq(
evolutions,
jdbc,
ehcache,
"com.softwaremill.macwire" %% "macros" % "2.3.0" % "provided",
"com.softwaremill.macwire" %% "macrosakka" % "2.3.0" % "provided",
"com.softwaremill.macwire" %% "util" % "2.3.0",
"com.softwaremill.macwire" %% "proxy" % "2.3.0",
"com.typesafe.play" %% "play-slick" % "3.0.1",
"com.typesafe.play" %% "play-slick-evolutions" % "3.0.1",
"org.postgresql" % "postgresql" % "9.4.1207.jre7",
"de.svenkubiak" % "jBCrypt" % "0.4.1",
"com.amazonaws" % "aws-java-sdk-s3" % "1.11.186",
"com.auth0" % "java-jwt" % "3.3.0",
"com.h2database" % "h2" % "1.4.196" % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "3.1.0" % Test,
"org.mockito" % "mockito-core" % "2.10.0" % Test
)
pipelineStages := Seq(digest, gzip)
pipelineStages in Assets := Seq(digest, gzip)
javaOptions in Test ++= Seq("-Dconfig.file=conf/application.test.conf")