If I have a project that specifies Gradle 8.10.1 i...
# community-support
e
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
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.
Maybe you use the tooling api to drive another build with 8.5 or something like that?
e
I vaguely remembered seeing this before, and it seems to be https://issuetracker.google.com/issues/212674413 and / or https://github.com/cashapp/sqldelight/issues/2797 Thanks!
v
Or look at the daemon log file, that should show what was executed on it