@@ -27,7 +27,7 @@ def dependenciesFor(version: String)(deps: (Option[(Long, Long)] => ModuleID)*):
2727val commonSettings = commonSmlBuildSettings ++ ossPublishSettings ++ Seq (
2828 organization := " com.softwaremill.sttp.shared" ,
2929 libraryDependencies ++= Seq (
30- " org.scalatest" %% " scalatest" % scalaTestVersion % Test
30+ " org.scalatest" %%% " scalatest" % scalaTestVersion % Test
3131 ),
3232 mimaPreviousArtifacts := Set .empty,
3333 versionScheme := Some (" semver-spec" )
@@ -59,14 +59,15 @@ val commonJsSettings = commonSettings ++ Seq(
5959 }
6060 },
6161 libraryDependencies ++= Seq (
62- " org.scala-js" %%% " scalajs-dom" % " 2.8.0"
62+ " org.scala-js" %%% " scalajs-dom" % " 2.8.0" ,
63+ " io.github.cquiroz" %%% " scala-java-time" % " 2.6.0" % Test
6364 )
6465)
6566
6667val commonNativeSettings = commonSettings ++ Seq (
6768 ideSkipProject := true ,
6869 libraryDependencies ++= Seq (
69- " org.scala-native " %%% " test-interface " % nativeVersion
70+ " io.github.cquiroz " %%% " scala-java-time " % " 2.6.0 " % Test
7071 )
7172)
7273
@@ -241,6 +242,10 @@ lazy val zio = (projectMatrix in file("zio"))
241242 scalaVersions = scala2alive ++ scala3,
242243 settings = commonJsSettings ++ browserChromeTestSettings
243244 )
245+ .nativePlatform(
246+ scalaVersions = scala3,
247+ settings = commonNativeSettings
248+ )
244249 .dependsOn(core)
245250
246251lazy val vertx = (projectMatrix in file(" vertx" ))
0 commit comments