forked from betagouv/aplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
45 lines (36 loc) · 1.29 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
43
44
45
name := """aplus"""
organization := "fr.gouv.beta"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.12.8"
//libraryDependencies += filters
libraryDependencies ++= Seq(
ws,
jdbc,
evolutions
)
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % Test
libraryDependencies += guice
libraryDependencies ++= Seq(
"org.postgresql" % "postgresql" % "42.2.2",
"org.playframework.anorm" %% "anorm" % "2.6.2",
"com.typesafe.play" %% "play-mailer" % "7.0.0",
"com.sun.mail" % "javax.mail" % "1.6.1",
"com.typesafe.play" %% "play-mailer-guice" % "7.0.0",
"com.typesafe.play" %% "play-json-joda" % "2.6.13"
)
// UI
libraryDependencies ++= Seq(
"org.webjars" %% "webjars-play" % "2.6.3",
"org.webjars.bower" % "material-design-lite" % "1.3.0",
"org.webjars" % "material-design-icons" % "3.0.1",
"org.webjars.npm" % "roboto-fontface" % "0.9.0",
"org.webjars.npm" % "dialog-polyfill" % "0.4.9",
"org.webjars.npm" % "twemoji" % "2.5.1",
"org.webjars" % "chartjs" % "2.7.2"
)
// Crash
libraryDependencies += "io.sentry" % "sentry-logback" % "1.7.5"
// Adds additional packages into Twirl
// Adds additional packages into conf/routes
// play.sbt.routes.RoutesKeys.routesImport += "fr.gouv.beta.binders._"