-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
34 lines (26 loc) · 1017 Bytes
/
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
scalaVersion := "2.13.3"
name := "homework"
organization := "com.evolutiongaming.bootcamp.homework"
version := "1.0"
val catsVersion = "2.2.0"
val catsEffectVersion = "2.2.0"
val scalaTestVersion = "3.1.0.0-RC2"
val circeVersion = "0.13.0"
scalacOptions ++= Seq(
"-Ymacro-annotations"
)
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % catsVersion,
"org.scalatest" %% "scalatest" % "3.2.3" % Test,
"org.scalatestplus" %% "scalatestplus-scalacheck" % scalaTestVersion % Test,
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-generic-extras" % circeVersion,
"io.circe" %% "circe-optics" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"org.typelevel" %% "cats-effect" % catsEffectVersion,
"org.scalaj" %% "scalaj-http" % "2.4.2" % Test
)
coverageEnabled := true
bulkyThresholdInLines := 10
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.11.1" cross CrossVersion.full)