Is it expected that in 8.7-rc-3, tests fail with `...
# community-support
j
Is it expected that in 8.7-rc-3, tests fail with
GradleRunner.withDebug(true)
? I have just prepared a minimal repro with:
Copy code
val runner = GradleRunner.create()
    .withProjectDir(dir.toFile())
    .withGradleVersion("8.7-rc-3")
    .forwardOutput()
    .withPluginClasspath()
    .withDebug(true)
and
build.gradle.kts
containing:
Copy code
plugins {
    id("my.plugin")
}

myExtension {
    say = "Oh!"
}
This fails miserably complaining:
Unresolved reference: say
Repo: https://github.com/hsz/gradle87rc3-withdebug
🐛 1