I need to identify all transitive project dependen...
# community-support
z
I need to identify all transitive project dependencies (source dependencies) for a given configuration. Basically, just a:
Copy code
listOf(
  ":subproject-a"
  ":subproject-b"
)
How can I do this? Note: the use case - We're an SDK, and I want to calculate code coverage for all transitive subproject dependencies of that SDK
v
Just use the jacoco report aggregation plugin?
z
That doesn't help me unfortunately, I have a custom plug-in that allows combining many different kinds of reports
I just need to create a grouping for all local source transitive dependencies
v
Well, then have a look at the plugins implementation and do it the same, because it does exactly what you want
it uses an artifact view with a component filter that filters for project dependencies
👍 1