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.6

Created 26 July 2020.

This plugin adds a new task (graphModules) to your project which will create an image with the graph of your module dependency tree

Using the plugins DSL:

plugins {
  id("com.savvasdalkitsis.module-dependency-graph") version "0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.savvasdalkitsis:module-dependency-graph:0.6")
  }
}

apply(plugin = "com.savvasdalkitsis.module-dependency-graph")

Using the plugins DSL:

plugins {
  id "com.savvasdalkitsis.module-dependency-graph" version "0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.savvasdalkitsis:module-dependency-graph:0.6"
  }
}

apply plugin: "com.savvasdalkitsis.module-dependency-graph"

Learn how to apply plugins to subprojects