How to get full list of dependencies and their meta?

I might add that gradle app:dependencies doesn’t give a full list.

And I’ve also tried what was suggested in another thread here:

tasks.register("getDependencies") {
    doLast {
        println project.configurations.compile.allDependencies
    }
}

But all I get is an empty list: []