com.savvasdalkitsis.module-dependency-graph
                  Owner:
                  
                    
                    Savvas Dalkitsis
                  
                
This plugin adds a new task (graphModules) to your project which will create an image with the graph of your module dependency tree
https://github.com/savvasdalkitsis/
Sources: https://github.com/savvasdalkitsis/
Version 0.9
Created 01 August 2020.
                This plugin adds a new task (graphModules) to your project which will create an image with the graph of your module dependency tree
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.savvasdalkitsis.module-dependency-graph") version "0.9"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.savvasdalkitsis.module-dependency-graph:com.savvasdalkitsis.module-dependency-graph.gradle.plugin:0.9") }It can then be applied in the precompiled script plugin:plugins { id("com.savvasdalkitsis.module-dependency-graph") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.savvasdalkitsis.module-dependency-graph:com.savvasdalkitsis.module-dependency-graph.gradle.plugin:0.9") } } apply(plugin = "com.savvasdalkitsis.module-dependency-graph")
- Applying plugins to all subprojects .