Search Gradle plugins

com.gitlab.stfs.gradle.dependency-graph-plugin

A Gradle plugin to produce a dependency report in dot format that can be used to generate a visual dependency graph

https://gitlab.com/stfs/gradle-dependency-graph-plugin

Sources: https://gitlab.com/stfs/gradle-dependency-graph-plugin.git

Version 0.4 (latest)

Created 20 May 2020.

A Gradle plugin to produce a dependency report in dot format that can be used to generate a visual dependency graph

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.gitlab.stfs.gradle.dependency-graph-plugin") version "0.4"
}

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.gitlab.stfs.gradle.dependency-graph-plugin:com.gitlab.stfs.gradle.dependency-graph-plugin.gradle.plugin:0.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.gitlab.stfs.gradle.dependency-graph-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.gitlab.stfs.gradle.dependency-graph-plugin:com.gitlab.stfs.gradle.dependency-graph-plugin.gradle.plugin:0.4")
      }
    }
    
    apply(plugin = "com.gitlab.stfs.gradle.dependency-graph-plugin")
  • Applying plugins to all subprojects .