io.github.rodm.gradle-usage
Owner: Rod MacKenzie
A plugin that scans a directory tree and produces a report of Gradle projects and versions used.
https://github.com/rodm/gradle-usage-plugin
Sources: https://github.com/rodm/gradle-usage-plugin
Version 0.5 (latest)
0.5
Created 02 August 2022.
A plugin that scans a directory tree and produces a report of Gradle projects and versions used.
Using the plugins DSL:
plugins {
id("io.github.rodm.gradle-usage") version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.rodm:plugin:0.5")
}
}
apply(plugin = "io.github.rodm.gradle-usage")
Using the plugins DSL:
plugins {
id "io.github.rodm.gradle-usage" version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.rodm:plugin:0.5"
}
}
apply plugin: "io.github.rodm.gradle-usage"