Search Gradle plugins

Version 0.5.1

0.5.1

Created 02 April 2020.

Create your submodules quickly by applying a common configuration.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.nofrills.multimodule") version "0.5.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.nofrills:multimodule:0.5.1")
      }
    }
    
    apply(plugin = "io.nofrills.multimodule")
  • Applying plugins to all subprojects .