This message was deleted.
# community-support
s
This message was deleted.
v
Is it safe to assume that you are on Gradle 5.3 or newer?
m
8.0.1
v
Then it should usually just work. Is maybe something suspicious or enlightning logged on
--info
or
--debug
level?
Otherwise to debug, I guess a good starting point is
ExternalResourceResolver
where
metadataSources
is used.
m
Yeah, I checked the logs before, nothing interesting there and wanted to actually avoid debugging. But I debugged it eventually and it turned out gradle also cached the metadata. We just fixed our proxy server that previously wasn’t serving the
.module
files, so gradle resorted to regular POMs. But now when we fixed our proxy server gradle still had the old metadata cached locally and didn’t even try to resolve them again. Removing metadata caches from
.gradle
dir helped.
👌 1
v
Great, or
--refresh-dependencies
would probably also have helped. 🙂
m
Good to know that one, yeah, thanks