I read this comment in the Gradle docs:
To deal with problems due to version conflicts, reports with dependency graphs are also very helpful. Such reports ar
If you want to see dependencies on project and all subprojects use in your top-level build.gradle:
subprojects { task listAllDependencies(type: DependencyReportTask) {} }
Then call gradle:
gradle listAllDependencies