Search Gradle plugins

io.github.rodm.gradle-usage

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)

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"

Learn how to apply plugins to subprojects