-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
36 lines (31 loc) · 1.28 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
33
34
35
36
name := "caja"
version := "1.0"
lazy val `caja` = (project in file(".")).enablePlugins(PlayScala)
val slick_version = "2.0.0"
val slick_codegen_version = "3.1.1"
val mariadb_version = "1.3.3"
val aws_version = "1.11.35"
val joda_time_version = "2.7"
val joda_convert_version = "1.7"
val redis_version = "3.3"
val commons_lang_version = "3.5"
val config_version = "1.2.1"
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
cache
, ws
, specs2 % Test
, evolutions
, "com.typesafe.slick" %% "slick-codegen" % slick_codegen_version
, "com.typesafe.play" %% "play-slick" % slick_version
, "com.typesafe.play" %% "play-slick-evolutions" % slick_version
, "org.mariadb.jdbc" % "mariadb-java-client" % mariadb_version
, "com.amazonaws" % "aws-java-sdk-core" % aws_version
, "com.amazonaws" % "aws-java-sdk-s3" % aws_version
, "joda-time" % "joda-time" % joda_time_version
, "org.joda" % "joda-convert" % joda_convert_version
, "net.debasishg" %% "redisclient" % redis_version
, "org.apache.commons" % "commons-lang3" % commons_lang_version
, "com.typesafe" % "config" % config_version
)
unmanagedResourceDirectories in Test <+= baseDirectory ( _ /"target/web/public/test" )