You can create tasks in the main build that wrap tasks in the composite build which you can then call from command line
Eg
task pluginPublishToMavenLocal {
dependsOn gradle.includedBuild('plugin').task('foo:publishToMavenLocal')
}
You can create tasks in the main build that wrap tasks in the composite build which you can then call from command line
Eg
task pluginPublishToMavenLocal {
dependsOn gradle.includedBuild('plugin').task('foo:publishToMavenLocal')
}