Search Gradle plugins

Version 0.2

Created 23 October 2019.

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

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.2")
  }
}

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

Using the plugins DSL:

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

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

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

Learn how to apply plugins to subprojects