You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import mill.define.Input can no longer be resolved. This results in some hassles when cross-compiling against multiple Mill versions.
[info] compiling 4 Scala sources to /home/runner/work/mill-vcs-version/mill-vcs-version/out/core/0.11.0-M8-19-514e01/compile.dest/classes ...
[warn] -target is deprecated: Use -release instead to compile against the correct platform API.
Error: /home/runner/work/mill-vcs-version/mill-vcs-version/core/src/de/tobiasroeser/mill/vcs/version/VcsVersion.scala:5:8: object Input is not a member of package mill.define
Error: import mill.define.{Discover, ExternalModule, Input, Module}
Error: ^
Error: /home/runner/work/mill-vcs-version/mill-vcs-version/core/src/de/tobiasroeser/mill/vcs/version/VcsVersion.scala:19:17: not found: type Input
Error: def vcsState: Input[VcsState] = T.input { calcVcsState(T.log) }
Error: ^
[warn] one warning found
Error: two errors found
1 targets failed
core[0.11.0-M8-19-514e01].compile Compilation failed
Error: Process completed with exit code 1.
import mill.define.Input
can no longer be resolved. This results in some hassles when cross-compiling against multiple Mill versions.Solution:
Keep some deprecated forwarders in
mill.define
package.The text was updated successfully, but these errors were encountered: