I have been browsing docs for an explanation, but have not found any clarification of such a case…
See a project structure:
├── subProA
│ ├── src
│ └── build.gradle
├── “non-project-through-folder”
- - – - - - - - ├── subProB
- - – - - - - - │ ├── src
- - – - - - - - │ └── build.gradle
- - – - - - - - ├── subProC
– - – - - - - -├ ├── src src
- - – - - - - - │ └── build.gradle
- - – - - - - -└── NO build.gradle SCRIPT ON THIS LEVEL
│
├── subProD
│ ├── src
│ └── build.gradle
├── subProE
│ ├── src
│ └── build.gradle
└── settings.gradle
root settings.gradle includes all the subprojects A,B,C,D,E - as clasic 5 include entries.
Some day a guy put a dependency to E that looked like:
implementation(project(‘:root:non-project-through-folder’))
Nobody noticed that as builds were working ok.
Reviewing the code I asked to remove the dependency (even if it was somehow effective, it was not explicit ) so I asked to replace it with explicit subproject (B or C) dependency(ies).
The dependency had been removed.
Then someone added a new subproject (let’s say F) to the “non-project-through-folder”.
The F subproject was also added to settings includes.
In addition buildSrc plugin was added for all subprojects from the “non-project-through-folder”.
BUT the new plugin have beening not providing the dependency to F … looks like the old and REMOVED dependency to:
implementation(project(‘:root:non-project-through-folder’))
is cached somewhere in Gradle and completely covers the plugin dependencies.
It took a lot of time to me to find out that only restoring the removed dependency helps, what sounds a bit magic.
Maybe I am wrong and missing something?