Search Gradle plugins

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.gitlab.stfs.gradle.dependencygraph:gradle-dependency-graph-plugin:0.4")
  }
}

apply(plugin = "com.gitlab.stfs.gradle.dependency-graph-plugin")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.gitlab.stfs.gradle.dependencygraph:gradle-dependency-graph-plugin:0.4"
  }
}

apply plugin: "com.gitlab.stfs.gradle.dependency-graph-plugin"

Learn how to apply plugins to subprojects