@@ -31,6 +31,8 @@ ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11"))
3131val CatsEffectVersion = " 3.7.0"
3232val ScalaTestVersion = " 3.2.19"
3333
34+ val NativeVersionIntroduced = " 1.8.0"
35+
3436lazy val root = tlCrossRootProject
3537 .aggregate(core, specs2, utest, minitest, scalatest)
3638
@@ -40,15 +42,15 @@ lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
4042 name := " cats-effect-testing-core" ,
4143 tlVersionIntroduced := List (" 2.12" , " 2.13" , " 3" ).map(_ -> " 1.3.0" ).toMap,
4244 libraryDependencies += " org.typelevel" %%% " cats-effect" % CatsEffectVersion )
43- .nativeSettings(tlVersionIntroduced := List (" 2.12" , " 2.13" , " 3" ).map(_ -> " 1.5.0 " ).toMap)
45+ .nativeSettings(tlVersionIntroduced := List (" 2.12" , " 2.13" , " 3" ).map(_ -> NativeVersionIntroduced ).toMap)
4446
4547lazy val specs2 = crossProject(JSPlatform , JVMPlatform , NativePlatform )
4648 .in(file(" specs2" ))
4749 .dependsOn(core)
4850 .settings(
4951 name := " cats-effect-testing-specs2" ,
5052 libraryDependencies += " org.specs2" %%% " specs2-core" % " 4.20.9" )
51- .nativeSettings(tlVersionIntroduced := List (" 2.12" , " 2.13" , " 3" ).map(_ -> " 1.5.0 " ).toMap)
53+ .nativeSettings(tlVersionIntroduced := List (" 2.12" , " 2.13" , " 3" ).map(_ -> NativeVersionIntroduced ).toMap)
5254
5355lazy val scalatest = crossProject(JSPlatform , JVMPlatform , NativePlatform )
5456 .in(file(" scalatest" ))
@@ -62,7 +64,7 @@ lazy val scalatest = crossProject(JSPlatform, JVMPlatform, NativePlatform)
6264 " org.scalatest" %%% " scalatest-mustmatchers" % ScalaTestVersion % Test ,
6365 " org.scalatest" %%% " scalatest-freespec" % ScalaTestVersion % Test ,
6466 " org.scalatest" %%% " scalatest-wordspec" % ScalaTestVersion % Test ))
65- .nativeSettings(tlVersionIntroduced := List (" 2.12" , " 2.13" , " 3" ).map(_ -> " 1.5.0 " ).toMap)
67+ .nativeSettings(tlVersionIntroduced := List (" 2.12" , " 2.13" , " 3" ).map(_ -> NativeVersionIntroduced ).toMap)
6668
6769lazy val utest = crossProject(JSPlatform , JVMPlatform , NativePlatform )
6870 .in(file(" utest" ))
@@ -77,7 +79,7 @@ lazy val utest = crossProject(JSPlatform, JVMPlatform, NativePlatform)
7779 " com.lihaoyi" %%% " utest" % " 0.9.0" ),
7880
7981 Test / scalacOptions -= " -Xfatal-warnings" )
80- .nativeSettings(tlVersionIntroduced := List (" 2.12" , " 2.13" , " 3" ).map(_ -> " 1.5.0 " ).toMap)
82+ .nativeSettings(tlVersionIntroduced := List (" 2.12" , " 2.13" , " 3" ).map(_ -> NativeVersionIntroduced ).toMap)
8183
8284lazy val minitest = crossProject(JSPlatform , JVMPlatform )
8385 .in(file(" minitest" ))
0 commit comments