gabrielfv
04/19/2021, 9:20 PMa -- b
\- c
b -- c
c -- d
I´m trying to find a way to find which modules depend on d
, in this case c
. If I wanted to know about c
, a
and b
. Ultimately, being able to do this recursively would be convenient. Since, transitively, every module would depend on d
.mbonnin
04/19/2021, 9:30 PM./gradlew :module:dependencies
should do itmbonnin
04/19/2021, 9:31 PMgabrielfv
04/19/2021, 9:31 PMmbonnin
04/19/2021, 9:31 PMgabrielfv
04/19/2021, 9:32 PMmbonnin
04/19/2021, 9:33 PMmbonnin
04/19/2021, 9:33 PMmbonnin
04/19/2021, 9:35 PMgabrielfv
04/19/2021, 9:36 PMmbonnin
04/19/2021, 9:38 PMafterEvaluate {}
runs but that's flaky...gabrielfv
04/19/2021, 9:38 PMmbonnin
04/19/2021, 9:38 PMVampire
04/20/2021, 8:04 AMdependencies
? That would then be dependencyInsight
?