Skip to content

Commit

Permalink
Add Scala Native to project aggregates (#504)
Browse files Browse the repository at this point in the history
* Add native to aggregate

* Use `%%%` for scala-collection-compat
  • Loading branch information
kyri-petrou authored Aug 14, 2024
1 parent d02db21 commit 3940d29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ lazy val root = project
.aggregate(
zioQueryJVM,
zioQueryJS,
zioQueryNative,
docs
)

Expand All @@ -82,7 +83,7 @@ lazy val zioQuery = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.settings(scalacOptions += "-Wconf:msg=[zio.stacktracer.TracingImplicits.disableAutoTrace]:silent")
.settings(
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-collection-compat" % "2.12.0"
"org.scala-lang.modules" %%% "scala-collection-compat" % "2.12.0"
),
scalacOptions ++=
(if (scalaBinaryVersion.value == "3")
Expand Down

0 comments on commit 3940d29

Please sign in to comment.