io.github.knownitwhy.gdr
Owner: ChenRenJie
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)
0.0.4
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"