Search Gradle plugins

Owner: Yurii

Gradle plugin that automates migration of consumer applications as Git submodules into library projects for streamlined testing and development in unified workspace

https://github.com/yuriikyry4enko/library-consumer-migrator

Sources: https://github.com/yuriikyry4enko/library-consumer-migrator.git

Version 0.0.1-alpha (latest)

Created 09 February 2026.

Gradle plugin that automates migration of consumer applications as Git submodules into library projects for streamlined testing and development in unified workspace

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.yuriikyry4enko.library-consumer-migrator") version "0.0.1-alpha"
}

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("io.github.yuriikyry4enko.library-consumer-migrator:io.github.yuriikyry4enko.library-consumer-migrator.gradle.plugin:0.0.1-alpha")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.yuriikyry4enko.library-consumer-migrator")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.yuriikyry4enko.library-consumer-migrator:io.github.yuriikyry4enko.library-consumer-migrator.gradle.plugin:0.0.1-alpha")
      }
    }
    
    apply(plugin = "io.github.yuriikyry4enko.library-consumer-migrator")
  • Applying plugins to all subprojects .