Eli Graber
09/17/2025, 4:34 PMgradleProperty? Just wasted hours on this 😞
https://github.com/gradle/gradle/issues/23572
https://github.com/gradle/gradle/issues/13302Adam
09/18/2025, 6:38 AMgradle.properties files in a single build.
https://github.com/gradle/gradle/pull/34260#discussion_r2222827257Adam
09/18/2025, 6:41 AMgradle.properties files in a single project wasn't intended, but it sometimes worked by accidentVampire
09/18/2025, 7:00 AMproviders.gradleProperty which does not read Gradle properties but Project properties and only those from the root project and above, but as far as I know halfway intended.
And instead of fixing the unintuitive change, they now added a best practice to avoid the behavior by not having subproject property files.
While the replacement also lacks behind, because now you cannot override propertyB for :util using a -P argument or similar, but now you have to use an init script to change it. :-/
If subproject property files should not be supported, then they should at least be deprecated.Vampire
09/18/2025, 9:07 AM