Skip to content

Commit

Permalink
Small improvements on build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelrenoux committed May 28, 2023
1 parent cabc110 commit 66e1cdc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,15 @@ libraryDependencies ++= Seq(
"org.playframework.anorm" %% "anorm" % AnormVersion % "optional",

/* ZIO test */
"dev.zio" %% "zio-test" % ZioVersion % "test",
"dev.zio" %% "zio-test-sbt" % ZioVersion % "test",
"dev.zio" %% "zio-test-magnolia" % ZioVersion % "test",
"dev.zio" %% "zio-test" % ZioVersion % Test,
"dev.zio" %% "zio-test-sbt" % ZioVersion % Test,
"dev.zio" %% "zio-test-magnolia" % ZioVersion % Test,

/* Cats for tests */
"org.typelevel" %% "cats-core" % CatsVersion % "test",
/* Cats for tests. Needed since zio-interop-cats doesn't pull it. */
"org.typelevel" %% "cats-core" % CatsVersion % Test,

/* H2 for tests */
"com.h2database" % "h2" % H2Version % "test"
"com.h2database" % "h2" % H2Version % Test
)


Expand Down

0 comments on commit 66e1cdc

Please sign in to comment.