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.
mvn:
1 parent 4b2c170 commit 0bf83ccCopy full SHA for 0bf83cc
runner/meta/src/mill/runner/meta/MillBuildRootModule.scala
@@ -77,7 +77,11 @@ class MillBuildRootModule()(implicit
77
78
override def runMvnDeps = Task {
79
val imports = cliImports()
80
- val ivyImports = imports.collect { case s"ivy:$rest" => rest }
+ val ivyImports = imports.collect {
81
+ // compat with older Mill-versions
82
+ case s"ivy:$rest" => rest
83
+ case s"mvn:$rest" => rest
84
+ }
85
Seq.from(
86
MillIvy.processMillMvnDepsignature(ivyImports.toSet)
87
.map(mill.scalalib.Dep.parse)
0 commit comments