forked from lnds/prosa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
30 lines (25 loc) · 864 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
name := """prosa-blog-server"""
version := "0.1.8.11"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.1"
libraryDependencies ++= Seq(
jdbc,
anorm,
cache,
ws
)
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-slick" % "0.8.0-RC2",
"org.mindrot" % "jbcrypt" % "0.3m",
"jp.t2v" %% "play2-auth" % "0.12.0",
"jp.t2v" %% "play2-auth-test" % "0.12.0" % "test",
"postgresql" % "postgresql" % "9.1-901-1.jdbc4",
"mysql" % "mysql-connector-java" % "5.1.31",
"joda-time" % "joda-time" % "2.3",
"com.fasterxml.uuid" % "java-uuid-generator" % "3.1.3",
"com.typesafe.play.plugins" %% "play-plugins-mailer" % "2.3.0",
"org.jsoup" % "jsoup" % "1.7.3",
"com.amazonaws" % "aws-java-sdk" % "1.7.12",
"com.github.seratch" %% "awscala" % "0.2.+",
"com.andersen-gott" %% "scravatar" % "1.0.3"
)