In a few places (mainly in the documentation) I ha...
# community-support
s
In a few places (mainly in the documentation) I have seen that it is possible to configure multiple Gradle projects in one build.gradle file using a syntax like
project(":foo") { ... }
. Is this something that is officially supported for use in real builds?
e
Where in the documentation does it use cross project configuration?
s
This talks about
allprojects
and
subprojects
but that's a bit different from what I'm asking about. I'm thinking about this method.
I can't find the place where I saw it in the docs at the moment.
e
It's the same as
allprojects
and
subprojects
. They allow configuring other projects. The documentation should probably be updated.
s
I see, thanks.
e
cc @Laura Kassovic
e
Thanks! The
Cross project configuration
link to learn more about it takes you to the
Do not use cross-project configuration
section I linked above. 😅 That section definitely should be updated.
👍 1