Search Gradle plugins

Version 0.4.0

Created 20 April 2018.

Gradle plugin that generates dependency graphs from your project.

Using the plugins DSL:

plugins {
  id("com.vanniktech.dependency.graph.generator") version "0.4.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.vanniktech.dependency.graph.generator" version "0.4.0"
}

Using legacy plugin application:

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

apply plugin: "com.vanniktech.dependency.graph.generator"

Learn how to apply plugins to subprojects