We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using splat, aka :_* in Cross for cross module auto detection, e.g.
splat
:_*
Cross
val scalaVersions = Seq("2.13.11", "2.13.10") object somemodule extends Cross[SomeModule](scalaVersions : _*) trait SomeModule extends Cross.Module[String]
However after #2511, it makes type check failed:
type mismatch; [error] found : Seq[String] [error] required: Seq[mill.define.Cross.Factory[build.this.SomeModule]] [error] object somemodule extends Cross[SomeModule](scalaVersions : _*) [error] ^ [error] one error found
I have been using this feature in mill 0.10, e.g. https://github.com/sequencer/vector/blob/319d2989099f4abd979421180f2cab5ea1412147/build.sc#L235
mill 0.10
will this feature be added back in mill 0.11+?
The text was updated successfully, but these errors were encountered:
OK, I found I can directly pass scalaVersions now, that's awesome.
scalaVersions
Sorry, something went wrong.
No branches or pull requests
I'm using
splat
, aka:_*
inCross
for cross module auto detection, e.g.However after #2511, it makes type check failed:
I have been using this feature in
mill 0.10
, e.g.https://github.com/sequencer/vector/blob/319d2989099f4abd979421180f2cab5ea1412147/build.sc#L235
will this feature be added back in mill 0.11+?
The text was updated successfully, but these errors were encountered: