SBT: upgrade sbt-2.0.0-RC10 and scala 3.8.3#422
Conversation
d07d7d1 to
78217e7
Compare
|
@eed3si9n has there been a change in sbt 2.x after RC6 which skips the root project when running a command? the tests fail since in the set up, it has earlier, running a command would call it on the root project and all three aggregated ones, but with the new version, only the aggregated ones. |
I created a small project to try to reproduce it: lazy val root = rootProject
.aggregate(p1, p2, p3)
lazy val p1 = project
lazy val p2 = project
lazy val p3 = projectand got expected result: sbt:root> hello
[info] p3
[info] root
[info] p1
[info] p2
[success] elapsed time: 0 swhere |
|
@eed3si9n thank you for checking. a mystery. it didn't work with RC9/3.8.1 and now works with RC10/3.8.3. |
No description provided.