forked from nicmarti/cfp-devoxx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
42 lines (31 loc) · 1.25 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
37
38
39
40
41
42
name := "cfp-devoxxfr"
version := "2.3-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala, SbtWeb)
includeFilter in(Assets, LessKeys.less) := "*.less"
scalaVersion := "2.11.6"
javaOptions += "-Duser.timezone=UTC"
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
libraryDependencies ++= Seq(
cache,
ws,
filters
)
val jacksonV = "2.4.3"
val elastic4sV = "1.3.2"
val elasticSearchV = "1.3.2"
// Coursier
libraryDependencies ++= Seq(
"redis.clients" % "jedis" % "2.1.0"
, "com.typesafe.play" %% "play-mailer" % "2.4.1"
, "org.apache.commons" % "commons-lang3" % "3.5"
, "commons-io" % "commons-io" % "2.4"
, "commons-codec" % "commons-codec" % "1.7" // for new Base64 that has support for String
, "org.ocpsoft.prettytime" % "prettytime" % "3.2.4.Final"
, "com.github.rjeschke" % "txtmark" % "0.13" // Used for Markdown in Proposal
//, "org.scalamock" %% "scalamock-specs2-support" % "3.0.1" % "test"
, "com.sksamuel.elastic4s" %% "elastic4s" % elastic4sV
, "org.elasticsearch" % "elasticsearch" % elasticSearchV
, "com.pauldijou" %% "jwt-core" % "0.9.2" // JWT for MyDevoxx
, "com.twilio.sdk" % "twilio" % "7.6.0" // SMS Twilio
, "org.scalaz" %% "scalaz-core" % "7.2.10"
)