Search Gradle plugins

com.dependency.graph

Gradle plugin that generates dependency graphs from your project.

https://github.com/chuyun923/

Sources: https://github.com/chuyun923/

Version 0.0.1 (latest)

Created 13 November 2019.

Gradle plugin that generates dependency graphs from your project.

Using the plugins DSL:

plugins {
  id("com.dependency.graph") version "0.0.1"
}

Using legacy plugin application:

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

apply(plugin = "com.dependency.graph")

Using the plugins DSL:

plugins {
  id "com.dependency.graph" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.dependency.graph:gradle-dependency-graph-generator-plugin:0.0.1"
  }
}

apply plugin: "com.dependency.graph"

Learn how to apply plugins to subprojects