vanniktech/gradle-dependency-graph-generator-plugin

Modules added as test dependencies are skipped

mustafaozhan opened this issue · 2 comments

Hello i just start using the generator and relised that the modules that used in test are ignored.

I am getting below picture
Screenshot 2022-10-31 at 20 52 47

Where my dependency graph should be like in the README.md of the repo

Please pay attention to test module which is added as test dependency to many other module.

Also on purpose.

it.name.contains("compileClassPath", ignoreCase = true) && listOf("test", "AndroidTest", "UnitTest").none { raw.contains(it) }

Can you try using the API to create your own graphs? https://github.com/vanniktech/gradle-dependency-graph-generator-plugin#generator-example that should solve everything for you

Hello sorry for late reply, I think that works now, thank you!