Skip to content

Commit

Permalink
fix scala-collection-compat (#658)
Browse files Browse the repository at this point in the history
  • Loading branch information
tellnobody1 authored Feb 14, 2023
1 parent a077fbd commit 45b7ead
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ lazy val core = crossProject(JSPlatform, JVMPlatform)
.settings(stdSettings("zio-logging"))
.settings(
libraryDependencies ++= Seq(
"dev.zio" %%% "zio" % ZioVersion,
"dev.zio" %%% "zio-streams" % ZioVersion,
("org.scala-lang.modules" %%% "scala-collection-compat" % "2.9.0").cross(CrossVersion.for3Use2_13),
"dev.zio" %%% "zio-test" % ZioVersion % Test,
"dev.zio" %%% "zio-test-sbt" % ZioVersion % Test
"dev.zio" %%% "zio" % ZioVersion,
"dev.zio" %%% "zio-streams" % ZioVersion,
"org.scala-lang.modules" %%% "scala-collection-compat" % "2.5.0",
"dev.zio" %%% "zio-test" % ZioVersion % Test,
"dev.zio" %%% "zio-test-sbt" % ZioVersion % Test
),
testFrameworks := Seq(new TestFramework("zio.test.sbt.ZTestFramework"))
)
Expand Down

0 comments on commit 45b7ead

Please sign in to comment.