Is it possible to configure only some subset of the sub projects.
I’m aware of subprojects{} but this applies to all the sub projects. Using project(’:p1’) {}, project(’:p2’){} seems repetitive.
Use case:
We have a number of sub projects, some which should be configured in the same way (dependencies etc). But there are other sub projects which should not use these settings
I suspect there are multiple solutions to this, but mine was to create a list of the subprojects I wanted to customize the configuration for and specify that list when calling configure. An example is below: