@@ -157,7 +157,8 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
157
157
}.taskValue,
158
158
libraryDependencies ++= Seq (
159
159
" io.github.cquiroz" %%% " scala-java-locales" % scalajavaLocalesVersion
160
- )
160
+ ),
161
+ Test / loadedTestFrameworks := Map .empty // workaround
161
162
)
162
163
163
164
lazy val tzdb = crossProject(JVMPlatform , JSPlatform , NativePlatform )
@@ -178,12 +179,13 @@ lazy val tzdb = crossProject(JVMPlatform, JSPlatform, NativePlatform)
178
179
}.taskValue
179
180
)
180
181
.nativeSettings(
181
- tzdbPlatform := TzdbPlugin .Platform .Native ,
182
+ tzdbPlatform := TzdbPlugin .Platform .Native ,
182
183
Compile / sourceGenerators += Def .task {
183
184
val srcDirs = (Compile / sourceManaged).value
184
185
val destinationDir = (Compile / sourceManaged).value
185
186
copyAndReplace(Seq (srcDirs), destinationDir)
186
- }.taskValue
187
+ }.taskValue,
188
+ Test / loadedTestFrameworks := Map .empty // workaround
187
189
)
188
190
.jvmSettings(
189
191
tzdbPlatform := TzdbPlugin .Platform .Jvm
@@ -252,5 +254,6 @@ lazy val demo = crossProject(JSPlatform, JVMPlatform, NativePlatform)
252
254
tzdbPlatform := TzdbPlugin .Platform .Jvm
253
255
)
254
256
.nativeSettings(
255
- tzdbPlatform := TzdbPlugin .Platform .Native
257
+ tzdbPlatform := TzdbPlugin .Platform .Native ,
258
+ Test / loadedTestFrameworks := Map .empty // workaround
256
259
)
0 commit comments