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
Unfortunately gradleProperty and findProperty are not the same. gradleProperty will only return properties from the root project, user home or cli, while findProperty also returns properties from the project's gradle.properties. See gradle/gradle#23572 which is effectively a blocker. We rely on being able to read project properties for configuring module specific things like the name or artifact id.
That said some usages can probably be replaced already, so that projects that use the base plugin and don't call pomFromGradleProperties are compatible with isolated projects.
When enabling isolated projects option for Gradle, project sync failure contains the following violation:
Stack trace points to this line.
Possible replacement for
findProperty()
isproviders.gradleProperty()
.The text was updated successfully, but these errors were encountered: