Composite Delegator Plugin¶
A plugin that delegates gradle task execution to included builds.
Features¶
- standard tasks are already added: assemble,build,checkandtest
- additional task could be configured
Installation¶
Add the following to your project module build.gradle/build.gradle.kts file:
plugins {
    id("eu.bitfunk.gradle.plugin.tool.composite.delegator")
}
The plugin could delegate additional tasks to included builds:
- additionalTasks: List of task names that additionally should be delegated to included builds
compositeDelegator {
    additionalTasks.set(listOf("exampleTask", "otherExampleTask"))
}
Usage¶
Ensure that your desired task is registered and call:
./gradlew exampleTask