We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f497ceb commit 1eaaa91Copy full SHA for 1eaaa91
macros/package.mill
@@ -25,5 +25,10 @@ trait Macros extends CrossSbtModule with HasScala2MacroAnno with ScalafmtModule
25
}
26
27
28
- override def ivyDeps = super.ivyDeps() ++ Seq(v.scalaReflect(crossScalaVersion))
+ override def ivyDeps =
29
+ if (!v.isScala3(crossScalaVersion)) {
30
+ super.ivyDeps() ++ Seq(v.scalaReflect(crossScalaVersion))
31
+ } else {
32
+ super.ivyDeps()
33
+ }
34
0 commit comments