vanniktech / gradle-dependency-graph-generator-plugin

Gradle plugin that generates dependency graphs from your project.
http://vanniktech.com
Apache License 2.0
1.54k stars 99 forks source link

Modules added as test dependencies are skipped #200

Closed mustafaozhan closed 1 year ago

mustafaozhan commented 1 year ago

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.

vanniktech commented 1 year ago

Also on purpose. https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/blob/c39c8538877670c219da7dd58f5dc2ca88319efa/src/main/kotlin/com/vanniktech/dependency/graph/generator/DependencyGraphGeneratorExtension.kt#L77

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

mustafaozhan commented 1 year ago

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