@@ -165,8 +165,7 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
165
165
}.taskValue,
166
166
libraryDependencies ++= Seq (
167
167
" io.github.cquiroz" %%% " scala-java-locales" % scalajavaLocalesVersion
168
- ),
169
- Test / loadedTestFrameworks := Map .empty // workaround
168
+ )
170
169
)
171
170
172
171
lazy val tzdb = crossProject(JVMPlatform , JSPlatform , NativePlatform )
@@ -187,13 +186,12 @@ lazy val tzdb = crossProject(JVMPlatform, JSPlatform, NativePlatform)
187
186
}.taskValue
188
187
)
189
188
.nativeSettings(
190
- tzdbPlatform := TzdbPlugin .Platform .Native ,
189
+ tzdbPlatform := TzdbPlugin .Platform .Native ,
191
190
Compile / sourceGenerators += Def .task {
192
191
val srcDirs = (Compile / sourceManaged).value
193
192
val destinationDir = (Compile / sourceManaged).value
194
193
copyAndReplace(Seq (srcDirs), destinationDir)
195
- }.taskValue,
196
- Test / loadedTestFrameworks := Map .empty // workaround
194
+ }.taskValue
197
195
)
198
196
.jvmSettings(
199
197
tzdbPlatform := TzdbPlugin .Platform .Jvm
@@ -262,6 +260,5 @@ lazy val demo = crossProject(JSPlatform, JVMPlatform, NativePlatform)
262
260
tzdbPlatform := TzdbPlugin .Platform .Jvm
263
261
)
264
262
.nativeSettings(
265
- tzdbPlatform := TzdbPlugin .Platform .Native ,
266
- Test / loadedTestFrameworks := Map .empty // workaround
263
+ tzdbPlatform := TzdbPlugin .Platform .Native
267
264
)
0 commit comments