Search Gradle plugins

com.savvasdalkitsis.module-dependency-graph

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.12 (latest)

Created 02 June 2023.

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.12"
}

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.12")
    }
    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.12")
      }
    }
    
    apply(plugin = "com.savvasdalkitsis.module-dependency-graph")
  • Applying plugins to all subprojects .