Skip to content

Commit 49c9456

Browse files
committed
Remove other workarounds
1 parent 2499d27 commit 49c9456

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

build.sbt

+4-7
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,7 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
165165
}.taskValue,
166166
libraryDependencies ++= Seq(
167167
"io.github.cquiroz" %%% "scala-java-locales" % scalajavaLocalesVersion
168-
),
169-
Test / loadedTestFrameworks := Map.empty // workaround
168+
)
170169
)
171170

172171
lazy val tzdb = crossProject(JVMPlatform, JSPlatform, NativePlatform)
@@ -187,13 +186,12 @@ lazy val tzdb = crossProject(JVMPlatform, JSPlatform, NativePlatform)
187186
}.taskValue
188187
)
189188
.nativeSettings(
190-
tzdbPlatform := TzdbPlugin.Platform.Native,
189+
tzdbPlatform := TzdbPlugin.Platform.Native,
191190
Compile / sourceGenerators += Def.task {
192191
val srcDirs = (Compile / sourceManaged).value
193192
val destinationDir = (Compile / sourceManaged).value
194193
copyAndReplace(Seq(srcDirs), destinationDir)
195-
}.taskValue,
196-
Test / loadedTestFrameworks := Map.empty // workaround
194+
}.taskValue
197195
)
198196
.jvmSettings(
199197
tzdbPlatform := TzdbPlugin.Platform.Jvm
@@ -262,6 +260,5 @@ lazy val demo = crossProject(JSPlatform, JVMPlatform, NativePlatform)
262260
tzdbPlatform := TzdbPlugin.Platform.Jvm
263261
)
264262
.nativeSettings(
265-
tzdbPlatform := TzdbPlugin.Platform.Native,
266-
Test / loadedTestFrameworks := Map.empty // workaround
263+
tzdbPlatform := TzdbPlugin.Platform.Native
267264
)

0 commit comments

Comments
 (0)