-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
51 lines (38 loc) · 1.51 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
48
49
50
51
val catsVersion = "2.13.0"
val kittensVersion = "3.5.0"
val catsParseVersion = "1.1.0"
val catsEffectVersion = "3.6.1"
val betterMonadicForVersion = "0.3.1"
val fs2Version = "3.12.0"
val munitVersion = "1.1.0"
val munitScalacheckVersion = "1.1.0"
val munitCatsEffectVersion = "2.1.0"
val scalacheckVersion = "1.18.1"
val scalacheckEffectMunitVersion = "1.0.4"
val disciplineMunitVersion = "2.0.0"
lazy val root = (project in file(".")).settings(
inThisBuild(
List(
organization := "com.horothesun",
scalaVersion := "2.13.16"
)
),
name := "scala-dojo",
scalacOptions := Seq("-unchecked", "-deprecation")
)
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % catsVersion,
"org.typelevel" %% "kittens" % kittensVersion,
"org.typelevel" %% "cats-parse" % catsParseVersion,
"org.typelevel" %% "cats-effect" % catsEffectVersion,
compilerPlugin("com.olegpy" %% "better-monadic-for" % betterMonadicForVersion),
"co.fs2" %% "fs2-core" % fs2Version,
"org.scalameta" %% "munit" % munitVersion % Test,
"org.typelevel" %% "munit-cats-effect" % munitCatsEffectVersion % Test,
"org.scalameta" %% "munit-scalacheck" % munitScalacheckVersion % Test,
"org.scalacheck" %% "scalacheck" % scalacheckVersion % Test,
"org.typelevel" %% "scalacheck-effect-munit" % scalacheckEffectMunitVersion % Test,
"org.typelevel" %% "cats-effect-testkit" % catsEffectVersion % Test,
"org.typelevel" %% "cats-laws" % catsVersion % Test,
"org.typelevel" %% "discipline-munit" % disciplineMunitVersion % Test
)