maven-dependency-plugin icon indicating copy to clipboard operation
maven-dependency-plugin copied to clipboard

[MDEP-695] Improve mvn dependency:tree - add option to generate mermaidjs flowchart diagram format

Open jira-importer opened this issue 5 years ago • 1 comments

Emanuel Ciuca opened MDEP-695 and commented

While trying to generate some diagrams for maven module dependencies I found mermaidjs flowchart diagrams to be most suitable for large graphs. (see https://mermaid-js.github.io/mermaid/#/flowchart))

Here is an example of a graph I generated for one of the projects I work on:

 

graph LR 

  module-1 --> |compile| module-2
  module-3 --> |compile| module-4
  module-3 --> |test| module-5
  module-3 --> |compile,test| module-2
  module-3 --> |test| module-1

 

I would be helpful to be able to generate this diagram for a multi-module maven project

 

 


Affects: waiting-for-feedback

Attachments:

jira-importer avatar May 13 '20 08:05 jira-importer