So, in maven we can get the dependency tree of a single artifact as outlined in this answer: https://stackoverflow.com/a/40025428/5655767
Is there an equivalent in gradle? I've been searching for a few hours now and can't find anything at all
EDIT: Please note that this question is different from Using gradle to find dependency tree as I would like to know if I can do something similar to mvn dependency:tree -Dverbose -Dincludes=[groupId]:[artifactId]:[type]:[version]
in gradle to avoid looking through all dependencies. None of the answers in the question above solve this, they all aim to listing all dependencies in project or module as the smallest form of granularity