Skip to content

Commit 3940d29

Browse files
authored
Add Scala Native to project aggregates (#504)
* Add native to aggregate * Use `%%%` for scala-collection-compat
1 parent d02db21 commit 3940d29

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ lazy val root = project
6262
.aggregate(
6363
zioQueryJVM,
6464
zioQueryJS,
65+
zioQueryNative,
6566
docs
6667
)
6768

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

0 commit comments

Comments
 (0)