-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
29 lines (25 loc) · 932 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
name := """mycellwasstolen"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.1"
libraryDependencies ++= Seq(
jdbc,
anorm,
cache,
ws,
"org.postgresql" % "postgresql" % "9.4-1200-jdbc4",
"com.typesafe.slick" %% "slick" % "2.1.0",
"net.liftweb" %% "lift-json" % "2.6",
"org.scalatest" % "scalatest_2.11" % "2.2.2" % "test",
"com.typesafe.play" %% "play-mailer" % "2.4.0",
"org.mockito" % "mockito-all" % "1.8.5" % "test",
"junit" % "junit" % "4.11" % "test",
"com.restfb" % "restfb" % "1.6.12",
"org.twitter4j" % "twitter4j-core" % "4.0.2",
"com.amazonaws" % "aws-java-sdk" % "1.6.10",
"net.sf.opencsv" % "opencsv" % "2.1",
"org.seleniumhq.selenium" % "selenium-java" % "2.45.0"% "test",
"com.h2database" % "h2" % "1.3.166" % "test",
"com.github.tototoshi" %% "scala-csv" % "1.2.1",
"org.scalastyle" %% "scalastyle" % "0.6.0"
)