Martin
10/15/2025, 3:16 PMfoo=bar to my root project gradle.properties, how is this working if this same root project becomes an included build?
1. The main build value is used
2. The included build value is used
3. It depends
If 3., how can I tell?Valentin Rocher
10/15/2025, 3:24 PMTrevJonez
10/15/2025, 3:24 PM> Configure project :plugins
IncludedBuild foo=included
> Configure project :
RootBuild foo=rootProjectTrevJonez
10/15/2025, 3:25 PM> Configure project :plugins
IncludedBuild foo=nullTrevJonez
10/15/2025, 3:26 PM-P it goes to both
> Configure project :plugins
IncludedBuild foo=cli-arg
> Configure project :
RootBuild foo=cli-argephemient
10/15/2025, 3:28 PMMartin
10/15/2025, 3:31 PMorg.gradle.jvmargs for an exampleMartin
10/15/2025, 3:31 PMMartin
10/15/2025, 3:32 PMTrevJonez
10/15/2025, 3:34 PMMartin
10/15/2025, 3:36 PMysb33r
10/16/2025, 11:48 AMorg.gradle.jvmargs for an example
This is related to the fact that the included build is built using the same JVM & Gradle as the starting root project. This might change in future, but it is state thing at present.