com.github.ptkltm.development.recursiveinclude
Owner: Patrick Leitermann
Plugin for recursively applying sub projects and composite builds.
https://github.com/ptkltm/com.github.ptkltm.development.recursiveinclude.gradleplugin
Sources: https://github.com/ptkltm/com.github.ptkltm.development.recursiveinclude.gradleplugin
Version 0.3.0 (latest)
0.3.0
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"