A plugin that delegates gradle task execution to included builds.
- standard tasks are already added:
assemble
,build
,check
andtest
- additional task could be configured
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"))
}
Ensure that your desired task is registered and call:
./gradlew exampleTask