-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
44 lines (40 loc) · 1.67 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
val http4sVersion = "0.21.1"
val fs2Version = "2.2.2"
val catsVersion = "2.1.0"
val catsEffectVersion = "2.1.0"
val scalatestVersion = "3.1.0"
val scalacheckVersion = "1.14.3"
val scalatestScalacheckVersion = "3.1.0.1"
val circeVersion = "0.13.0"
// Global / onLoad := (Global / onLoad).value.andThen { s =>
// dynverAssertTagVersion.value
// s
// }
ThisBuild / scalaVersion := "2.13.1"
ThisBuild / crossScalaVersions += "2.12.10"
ThisBuild / organization := "com.github.filosganga"
ThisBuild / organizationName := "Filippo De Luca"
ThisBuild / dynverSeparator := "-"
lazy val root = (project in file("."))
.settings(
name := "dataduggee",
scalacOptions -= "-Xfatal-warnings", // enable all options from sbt-tpolecat except fatal warnings
scalacOptions += "-target:jvm-1.8",
libraryDependencies ++= List(
"org.typelevel" %% "cats-macros" % catsVersion,
"org.typelevel" %% "cats-kernel" % catsVersion,
"org.typelevel" %% "cats-core" % catsVersion,
"org.typelevel" %% "cats-effect" % catsEffectVersion,
"co.fs2" %% "fs2-core" % fs2Version,
"co.fs2" %% "fs2-io" % fs2Version,
"org.http4s" %% "http4s-core" % http4sVersion,
"org.http4s" %% "http4s-client" % http4sVersion,
"org.http4s" %% "http4s-blaze-core" % http4sVersion,
"org.http4s" %% "http4s-blaze-client" % http4sVersion,
"org.scalatest" %% "scalatest" % scalatestVersion % Test,
"org.scalacheck" %% "scalacheck" % scalacheckVersion % Test,
"org.scalatestplus" %% "scalacheck-1-14" % scalatestScalacheckVersion % Test,
"io.circe" %% "circe-parser" % circeVersion % Test,
"io.circe" %% "circe-core" % circeVersion % Test,
)
)