jdessey
jdessey

Reputation: 740

Visualize Maven dependencies excluding test scope

I would like to generate a diagram including all of a maven module's dependencies, for all scopes except test. I've been using IntelliJ IDEA 2016.1, which has a nice UI when selecting 'Show Dependencies' from a pom file. However, you can only select 1 scope, or all scopes. All scopes is very cluttered due to test-scoped dependencies like arquillian. I'd like to show compile+provided+runtime.

I'm assuming that IntellJ is using the maven dependency:tree plugin underneath, whose scope options are the same. Are there any other convenient ways to do this either within IntelliJ or through a maven plugin?

Upvotes: 2

Views: 421

Answers (1)

Meo
Meo

Reputation: 12491

Maven Helper plugin has a nice visualization of dependencies.

Upvotes: 1

Related Questions