-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
38 lines (28 loc) · 1.17 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
name := """DemocracIT"""
version := "0.0-SNAPSHOT"
scalaVersion := "2.11.7"
resolvers := ("Atlassian Releases" at "https://maven.atlassian.com/public/") +: resolvers.value
resolvers += "scalaz-bintray" at "https://dl.bintray.com/scalaz/releases"
resolvers += Resolver.sonatypeRepo("snapshots")
// http://www.ocpsoft.org/prettytime/ format hours/dates
libraryDependencies ++= Seq(
jdbc,
cache,
ws,
filters,
"com.mohiva" %% "play-silhouette" % "3.0.0",
"org.webjars" %% "webjars-play" % "2.4.0",
"net.codingwell" %% "scala-guice" % "4.0.1",
"net.ceedubs" %% "ficus" % "1.1.2",
"com.adrianhurt" %% "play-bootstrap3" % "0.4.4-P24",
"com.mohiva" %% "play-silhouette-testkit" % "3.0.0" % "test",
"org.ocpsoft.prettytime" % "prettytime" % "3.2.7.Final",
"org.postgresql" % "postgresql" % "9.3-1100-jdbc41",
"org.specs2" %% "specs2-core" % "3.0.1" % "test",
"com.typesafe.play" %% "anorm" % "2.4.0",
"org.apache.pdfbox" % "pdfbox" % "1.8.2",
"com.typesafe.play" %% "play-mailer" % "3.0.1"
)
lazy val root = (project in file(".")).enablePlugins(PlayScala, PlayEbean)
scalacOptions in Test ++= Seq("-Yrangepos")
TwirlKeys.templateImports ++=Seq("model.dtos._")