Search Gradle plugins

Version 0.3.1 (latest)

0.3.1

Created 15 November 2024.

List project dependents on a project in multi-project

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.bjoernmayer.gradle-project-dependents") version "0.3.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.bjoernmayer:plugin:0.3.1")
      }
    }
    
    apply(plugin = "io.github.bjoernmayer.gradle-project-dependents")
  • Applying plugins to all subprojects .