How can I list dependencies between project in a m...
# community-support
s
How can I list dependencies between project in a multi-project, without dependencies on external artifacts? Or actually, what I'm interested in in this case, is to list projects in the order they would be built (i.e. breadth-first start from the leaves in the project dependency graph).
v
Is maybe `--task-graph`enough for your use-case?
s
Hmm, yes, I guess
./gradlew compileKotlin --task-graph
is workable for me, thanks.
👌 1