Search Gradle plugins

argelbargel.build-modules.manager

Gradle-Plugin which allows to create a gradle-build which ties together multiple otherwise separate gradle-projects. It's use-case is quite similar to that of gradle's own Composite builds.

https://github.com/Argelbargel/gradle-build-modules

Sources: https://github.com/Argelbargel/gradle-build-modules

Version 0.5.2 (latest)

Created 09 August 2018.

Gradle-Plugin which allows to create a gradle-build which ties together multiple otherwise separate gradle-projects. It's use-case is quite similar to that of gradle's own Composite builds.

Add this plugin to your build using the plugins DSL:

plugins {
  id("argelbargel.build-modules.manager") version "0.5.2"
}

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("argelbargel.build-modules.manager:argelbargel.build-modules.manager.gradle.plugin:0.5.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("argelbargel.build-modules.manager")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("argelbargel.build-modules.manager:argelbargel.build-modules.manager.gradle.plugin:0.5.2")
      }
    }
    
    apply(plugin = "argelbargel.build-modules.manager")
  • Applying plugins to all subprojects .