Hello! I have a subproject `uistuff` which my subp...
# gradle
h
Hello! I have a subproject
uistuff
which my subproject
app
depends on.
uistuff
retrieves
implementation
dependencies from a private repository only specified in its build.gradle . However
app
seems to believe it should have these dependencies (but can’t find them due to not having the private repository configured). Strangely, when looking at a build scan
uistuff
does not appears in the dependencies pane unlike all of my other subprojects. Any ideas what might cause this?
m
implementation
dependencies are still put on the runtime classpath of
app
You could shadow your private dependencies if you want to make them available to downstream modules
h
Thanks @mbonnin ! … Are you referring to https://imperceptiblethoughts.com/shadow/ or something builtin?
m
Yep, that one !