Search Gradle plugins

io.github.knownitwhy.gdr

A plugin that helps you analyze dependencies of project, task, configuration

https://github.com/knownitwhy/gdr

Sources: https://github.com/knownitwhy/gdr.git

Version 0.0.4 (latest)

Created 09 October 2022.

A plugin that helps you analyze dependencies of project, task, configuration

Using the plugins DSL:

plugins {
  id("io.github.knownitwhy.gdr") version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.knownitwhy:plugin:0.0.4")
  }
}

apply(plugin = "io.github.knownitwhy.gdr")

Using the plugins DSL:

plugins {
  id "io.github.knownitwhy.gdr" version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.knownitwhy:plugin:0.0.4"
  }
}

apply plugin: "io.github.knownitwhy.gdr"

Learn how to apply plugins to subprojects