If I have a project that specifies Gradle 8.10.1 in its wrapper properties and it defines an includedBuild on a project that doesn't specify a Gradle version in its wrapper properties, and I build the first project, why would there be a Gradle 8.5 daemon spinning up? Looking in the
.gradle
of the includedBuild I see a
8.5
and an
8.10.1
directory.
v
Vampire
09/20/2024, 9:20 PM
Hard to say. Even if the included build would have any version defined would be irrelevant, it always is built in the same daemon as the including build.
Vampire
09/20/2024, 9:21 PM
Maybe you use the tooling api to drive another build with 8.5 or something like that?