How to generate a graph of the dependency between all modules of a Maven project?

后端 未结 8 2023
遇见更好的自我
遇见更好的自我 2020-11-28 06:53

How to generate a graph of the dependency between all modules of a Maven project (excluding third party libraries like JUnit, SLF4J, etc.)? I couldn\'t find a way to include

8条回答
  •  伪装坚强ぢ
    2020-11-28 07:40

    Installed Maven Graph Plugin: http://mvnplugins.fusesource.org/maven/1.10/maven-graph-plugin/index.html, configured it this way to hide third party dependencies. Worked out fine.

     
      graph
      
        
          mvnplugins.fusesource.org
          http://mvnplugins.fusesource.org/repo/release
          
            true
          
        
      
      
        
          
            org.fusesource.mvnplugins
            maven-graph-plugin
            1.10
    
            
              true
            
    
          
        
      
    
    

提交回复
热议问题