-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
47 lines (46 loc) · 1.35 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
46
47
lazy val commonSettings = Seq(
organization := "com.github.nabezokodaikon",
name := "pcars2-telemetry-browsing",
version := "0.9.0",
scalaVersion := "2.12.8",
scalacOptions ++= Seq(
"-deprecation",
"-feature",
"-unchecked" /*,
"-Xlint",
"-Ywarn-unused",
"-Ywarn-unused-import",
"-Ywarn-value-discard" */
)
)
lazy val root = (project.in(file(".")))
.settings(commonSettings: _*)
.settings(
resolvers ++= {
Seq(
)
},
libraryDependencies ++= {
Seq(
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.8.0",
) ++
Seq(
"org.scalactic" %% "scalactic" % "3.0.5",
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test",
) ++
Seq(
"com.typesafe.akka" %% "akka-actor" % "2.5.11",
"com.typesafe.akka" %% "akka-testkit" % "2.5.11" % Test,
"com.typesafe.akka" %% "akka-stream" % "2.5.11",
"com.typesafe.akka" %% "akka-stream-testkit" % "2.5.11" % Test,
"com.typesafe.akka" %% "akka-http" % "10.1.0",
"com.typesafe.akka" %% "akka-http-testkit" % "10.1.0" % Test,
"com.typesafe.akka" %% "akka-http-spray-json" % "10.1.1"
) ++
Seq(
"org.mapdb" % "mapdb" % "3.0.5"
)
}
)