Gradle doesn't list full transitive dependencies

Hi. I’m trying to get the transitive dependencies full list leveraging gradle dependencies command but a lot of them are omitted (for instance every foo-parent).

Is there any way to get a more verbose list?

I workaround it doing a fake build with no cache and grepping the output: gradle app:build --info | grep 'Downloading' but give me some problems with corner cases.

Regards.

The only way I could get to the parent POMs was to integrate the Maven model builder with Gradle. Take a look at MavenDependencyExport.groovy

See related forum post and github issue