-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
37 lines (27 loc) · 1.04 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
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.13.10"
lazy val root = (project in file("."))
.settings(
name := "OilParserAPI"
)
val AkkaVersion = "2.7.0"
val AkkaHttpVersion = "10.5.0"
val circeVersion = "0.14.3"
libraryDependencies ++= Seq(
/* akka dependencies */
"com.typesafe.akka" %% "akka-actor-typed" % AkkaVersion,
"com.typesafe.akka" %% "akka-stream" % AkkaVersion,
"com.typesafe.akka" %% "akka-http" % AkkaHttpVersion,
/* akka testing dependencies */
"com.typesafe.akka" %% "akka-stream-testkit" % AkkaVersion,
"com.typesafe.akka" %% "akka-http-testkit" % AkkaHttpVersion,
"com.github.pureconfig" %% "pureconfig" % "0.17.2",
/* csv parsing dependencies */
"com.nrinaudo" %% "kantan.csv" % "0.7.0",
"com.nrinaudo" %% "kantan.csv-generic" % "0.7.0",
"com.nrinaudo" %% "kantan.csv-commons" % "0.7.0",
/* encode/decode dependencies */
"io.circe" %% "circe-parser" % circeVersion,
"io.circe" %% "circe-generic-extras" % circeVersion,
"org.scalatest" %% "scalatest" % "3.2.15" % Test
)