Search Gradle plugins

Version 0.3.0 (latest)

Created 30 October 2019.

Plugin for recursively applying sub projects and composite builds.

Using the plugins DSL:

plugins {
  id("com.github.ptkltm.development.recursiveinclude") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.ptkltm.development.recursiveinclude.gradleplugin:com.github.ptkltm.development.recursiveinclude.gradleplugin:0.3.0")
  }
}

apply(plugin = "com.github.ptkltm.development.recursiveinclude")

Using the plugins DSL:

plugins {
  id "com.github.ptkltm.development.recursiveinclude" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.ptkltm.development.recursiveinclude.gradleplugin:com.github.ptkltm.development.recursiveinclude.gradleplugin:0.3.0"
  }
}

apply plugin: "com.github.ptkltm.development.recursiveinclude"

Learn how to apply plugins to subprojects