-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
20 lines (15 loc) · 833 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name := "scala-zio2-zstream-workshop"
version := "0.1"
scalaVersion := "2.13.8"
libraryDependencies += "dev.zio" %% "zio" % "2.0.2"
libraryDependencies += "dev.zio" %% "zio-streams" % "2.0.2"
libraryDependencies += "eu.timepit" %% "refined" % "0.9.28"
libraryDependencies += "io.estatico" %% "newtype" % "0.4.4"
libraryDependencies += "tf.tofu" %% "derevo-cats" % "0.13.0"
libraryDependencies += "dev.zio" %% "zio-test" % "2.0.2" % Test
libraryDependencies += "dev.zio" %% "zio-test-sbt" % "2.0.2" % Test
libraryDependencies += "dev.zio" %% "zio-test-magnolia" % "2.0.2" % Test
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.2" % Test
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.14.1" % Test
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
scalacOptions += "-Ymacro-annotations"