-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
32 lines (32 loc) · 1.3 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
lazy val root = (project in file("."))
.enablePlugins(PlayScala)
.settings(
name := """API""",
version := "1.0-SNAPSHOT",
scalaVersion := "2.12.9",
libraryDependencies ++= Seq(
guice,
jdbc,
"org.scalatestplus.play"%%"scalatestplus-play"%"5.0.0"%Test,
"com.google.firebase"%"firebase-admin"%"6.14.0",
"com.typesafe.play"%%"play-json"%"2.8.0",
"org.postgresql" % "postgresql" % "9.4-1200-jdbc41",
// "cn.playscala" % "play-mongo_2.12" % "0.3.0"
// "org.reactivemongo" %% "play2-reactivemongo" % "0.12.4"
// "org.reactivemongo" %% "play2-reactivemongo" % "0.20.11-play28",
// "org.reactivemongo" %% "reactivemongo-play-json-compat" % "0.20.9-play28",
"org.mongodb.scala" %% "mongo-scala-driver" % "2.9.0",
"com.pauldijou" %% "jwt-play" % "0.19.0",
"com.pauldijou" %% "jwt-core" % "0.19.0",
"com.auth0" % "jwks-rsa" % "0.6.1",
"org.apache.spark" %% "spark-core" % "2.4.0",
"org.apache.spark" %% "spark-sql" % "2.4.0",
// "org.apache.spark" %% "spark-mllib" % "1.0.1"
),
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-Xfatal-warnings"
),
// addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full)
)