-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (19 loc) · 708 Bytes
/
Copy pathbuild.sbt
File metadata and controls
26 lines (19 loc) · 708 Bytes
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
name := """forward-me-this"""
organization := "com.coderfromscratch"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava, PlayEbean)
scalaVersion := "2.13.2"
libraryDependencies += guice
// Validate Emails
libraryDependencies += "commons-validator" % "commons-validator" % "1.6"
// Database Support
libraryDependencies ++= Seq(
javaJdbc,
evolutions,
"mysql" % "mysql-connector-java" % "8.0.20",
"org.glassfish.jaxb" % "jaxb-core" % "2.3.0.1",
"org.glassfish.jaxb" % "jaxb-runtime" % "2.3.2"
)
// Email Support
libraryDependencies += "com.typesafe.play" %% "play-mailer" % "8.0.0"
libraryDependencies += "com.typesafe.play" %% "play-mailer-guice" % "8.0.0"