Right, but since those expressions are modifying t...
# gradle
r
Right, but since those expressions are modifying the root project's buildscript, one can't replicate a groovy-based multi-project build in which subprojects have their own buildscript
b
rocketraman: it is possible to modify a child’s
buildscript
settings from the parent, for instance,
Copy code
subprojects { buildscript.repositories { mavenCentral() } }
instead of
subprojects { buildscript { repositories { mavenCentral() } } }
which won’t work.
r
@bamboo And would that work for a subset of subprojects as well, with the appropriate
filter
applied to
subprojects
?