File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,8 @@ lazy val macros = crossProject(JSPlatform, JVMPlatform)
166
166
} else {
167
167
" org.scala-lang" % " scala-reflect" % scalaVersion.value
168
168
}
169
- }
169
+ },
170
+ libraryDependencies += scalaXmlTest.value
170
171
)
171
172
172
173
lazy val macrosJS = macros.js
@@ -192,7 +193,8 @@ lazy val core = crossProject(JSPlatform, JVMPlatform)
192
193
} else {
193
194
Seq (" com.beachape" %% " enumeratum-macros" % Versions .Macros .stable)
194
195
}
195
- }
196
+ },
197
+ libraryDependencies += scalaXmlTest.value
196
198
)
197
199
198
200
def configureWithLocal (
@@ -251,6 +253,7 @@ lazy val coreJVMTests = Project(id = "coreJVMTests", base = file("enumeratum-cor
251
253
" org.scala-lang" % " scala-compiler" % scalaVersion.value % Test
252
254
}
253
255
},
256
+ libraryDependencies += scalaXmlTest.value,
254
257
publishArtifact := false ,
255
258
publishLocal := {}
256
259
)
@@ -489,7 +492,8 @@ lazy val enumeratumJson4s =
489
492
.settings(
490
493
// TODO: Remove once JSON4S is fixed for Scala3;
491
494
// https://github.com/json4s/json4s/issues/1035
492
- disabledSettings)
495
+ disabledSettings
496
+ )
493
497
.configure(configureWithLocal(coreJVM))
494
498
495
499
// ScalaCheck
@@ -645,7 +649,8 @@ lazy val enumeratumSlick =
645
649
}
646
650
)
647
651
.settings( // TODO: Remove once Slick is published for Dotty
648
- disabledSettings)
652
+ disabledSettings
653
+ )
649
654
.configure(configureWithLocal(coreJVM))
650
655
651
656
// Cats
You can’t perform that action at this time.
0 commit comments