Search Gradle plugins

Attempts to find a project in a multi-module setup, otherwise falls back to external artifact

https://github.com/melowody/multi-module

Sources: https://github.com/melowody/multi-module.git

Version 1.0.1 (latest)

Created 10 May 2026.

Attempts to find a project in a multi-module setup, otherwise falls back to external artifact

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.meluhdy.multi-module") version "1.0.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("dev.meluhdy.multi-module:dev.meluhdy.multi-module.gradle.plugin:1.0.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("dev.meluhdy.multi-module")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.meluhdy.multi-module:dev.meluhdy.multi-module.gradle.plugin:1.0.1")
      }
    }
    
    apply(plugin = "dev.meluhdy.multi-module")
  • Applying plugins to all subprojects .