Hi Team, I have defined few internal repos in the ...
# community-support
a
Hi Team, I have defined few internal repos in the repositories section of my build.gradle. and I want to know the source repo of each dependency being downloaded. how to do that? I tried build --debug but didn't find the information. my gradle version is 8.9. Any help would be appreciated. Thanks
v
Add
--refresh-dependencies
, then you should see it in the info or debug output. Your libs are probably served from cache.
Or if you can use a build
--scan
it should also contain that information iirc
a
yes the first approach worked, Thank you!!
👌 1