-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
37 lines (34 loc) · 1.12 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
val commonSettings = Seq(
organization := "co.subneon",
scalaVersion := "2.13.6",
scalacOptions ++= List(
"-unchecked",
"-deprecation",
"-encoding",
"UTF8"
),
run := Defaults.runTask(Runtime / fullClasspath, Compile / run / mainClass, run / runner).evaluated
)
val projectDependencies = {
val fs2Version = "3.0.6"
val fs2DataVersion = "1.0.0"
val circeVersion = "0.14.1"
val scalatestVersion = "3.2.9"
Seq(
"co.fs2" %% "fs2-core" % fs2Version,
"co.fs2" %% "fs2-io" % fs2Version,
"org.gnieh" %% "fs2-data-csv" % fs2DataVersion,
"org.gnieh" %% "fs2-data-csv-generic" % fs2DataVersion,
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"org.scalatest" %% "scalatest" % scalatestVersion % Test
)
}
val companiesFilter = project
.in(file("."))
.settings(commonSettings)
.settings(
version := "0.0.1",
libraryDependencies ++= projectDependencies
)