NEW: Treat :: as wildcard to mean “execute task in this project and all subprojects”
Which means that feature is under development and yet not included in release (correct me, if i’m wrong)
I’m using gradle 3.1 and I want to execute task on each included build and it’s subprojects. So the question is if on 3.1 version I have opportunity to do that. Thank you
Right, and through dependsOn gradle.includedBuilds*.task(":build")
But this will be applied to included build. How to include subprojects in build process?