From 49c945638ceca1ada79084b4bf0ebbb62f53d723 Mon Sep 17 00:00:00 2001 From: Arman Bilge Date: Fri, 17 Mar 2023 17:09:51 +0000 Subject: [PATCH] Remove other workarounds --- build.sbt | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/build.sbt b/build.sbt index 72660b337..74fe2a9b7 100644 --- a/build.sbt +++ b/build.sbt @@ -165,8 +165,7 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform) }.taskValue, libraryDependencies ++= Seq( "io.github.cquiroz" %%% "scala-java-locales" % scalajavaLocalesVersion - ), - Test / loadedTestFrameworks := Map.empty // workaround + ) ) lazy val tzdb = crossProject(JVMPlatform, JSPlatform, NativePlatform) @@ -187,13 +186,12 @@ lazy val tzdb = crossProject(JVMPlatform, JSPlatform, NativePlatform) }.taskValue ) .nativeSettings( - tzdbPlatform := TzdbPlugin.Platform.Native, + tzdbPlatform := TzdbPlugin.Platform.Native, Compile / sourceGenerators += Def.task { val srcDirs = (Compile / sourceManaged).value val destinationDir = (Compile / sourceManaged).value copyAndReplace(Seq(srcDirs), destinationDir) - }.taskValue, - Test / loadedTestFrameworks := Map.empty // workaround + }.taskValue ) .jvmSettings( tzdbPlatform := TzdbPlugin.Platform.Jvm @@ -262,6 +260,5 @@ lazy val demo = crossProject(JSPlatform, JVMPlatform, NativePlatform) tzdbPlatform := TzdbPlugin.Platform.Jvm ) .nativeSettings( - tzdbPlatform := TzdbPlugin.Platform.Native, - Test / loadedTestFrameworks := Map.empty // workaround + tzdbPlatform := TzdbPlugin.Platform.Native )