Hi folks, I'm currently learning on how gradle reb...
# gradle
c
Hi folks, I'm currently learning on how gradle rebuilds a project on multi module project and the impacts on incremental build If I have this modularization
app module
>
domain module
<
datasource module
where we set (in build.gradle)
app module
&
datasource module
depend on
domain module
. Does that mean if I change something in
domain module
then
app module
&
datasource module
will also be rebuilt too ?
👌 1
x
That' right, and the more dependencies exist between modules, the less you will benefit from parallel compilation. For your example, the
app
and
datasource
modules could be built in parallel once the
domain
module has been built. However, none of those modules could start to be built before the
domain
module