You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
org.gradle.api.InvalidUserCodeException: Project ':app' cannot dynamically look up a property in the parent project ':'
...
at org.gradle.api.internal.project.DefaultProject.hasProperty(DefaultProject.java:1175)
at com.diffplug.gradle.spotless.SpotlessExtensionImpl.createFormatTasks(SpotlessExtensionImpl.java:51)
at com.diffplug.gradle.spotless.SpotlessExtension.maybeCreate(SpotlessExtension.java:262)
at com.diffplug.gradle.spotless.SpotlessExtension.format(SpotlessExtension.java:246)
at com.diffplug.gradle.spotless.SpotlessExtension.format(SpotlessExtension.java:224)
Specifically, Project.getProperty/Project.hasProperty look like they need to be replaced with provider APIs instead.
The text was updated successfully, but these errors were encountered:
Gradle 8.5, Spotless Gradle plugin 6.23.3, macOS Sonoma 14.2.1
Project isolation is coming down the pipeline in Gradle and adds new limitations
https://gradle.github.io/configuration-cache/#status_as_of_gradle_8_5
This fails within spotless here
Specifically,
Project.getProperty
/Project.hasProperty
look like they need to be replaced with provider APIs instead.The text was updated successfully, but these errors were encountered: