Hi
Does anyone know if it’s possible to share a single gradle wrapper instance between project in a multi project build.
E.g.
- root
- project_a
- project_b
- project_c
- project_d
I want all project to share a single wrapper instance, while at the same time, if I build one of the projects, only that project will be built (assuming there are no dependencies on other projects).
So in the example above, non of the project depend on one another, so build project_x from the project_x dir, will only build that project.
Is there a way to hold a single instance of the wrapper in root, and still be able to call build from project_c and have only that project build?
Thanks