-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (26 loc) · 1.03 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
import sbt.Keys._
import play.sbt.PlaySettings
lazy val root = (project in file("."))
.enablePlugins(PlayService, PlayLayoutPlugin, Common)
.settings(
name := "publictransportinfo",
scalaVersion := "2.12.8",
libraryDependencies ++= Seq(
guice,
"org.joda" % "joda-convert" % "2.2.1",
"io.lemonlabs" %% "scala-uri" % "1.5.1",
"net.codingwell" %% "scala-guice" % "4.2.6",
"org.apache.spark" %% "spark-streaming" % "2.4.3",
"org.apache.spark" %% "spark-sql" % "2.4.3",
"com.typesafe.akka" %% "akka-stream-kafka" % "2.0.3",
"com.typesafe.akka" %% "akka-stream" % "2.5.30",
"org.apache.kafka" %% "kafka" % "2.4.1",
"org.scalatestplus.play" %% "scalatestplus-play" % "5.0.0" % Test
).map(_.exclude("org.slf4j", "*")),
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-Xfatal-warnings"
)
).settings(libraryDependencies ++= Seq("net.logstash.logback" % "logstash-logback-encoder" % "6.2"))
PlayKeys.devSettings := Seq("play.server.http.port" -> "8081")