I have configured several Nexus managed maven repositories for dependency resolving. I’m building and using snapshots and also need stuff from the 3rd party repository. Now when doing a build --info, I see that Gradle is trying to resolve artifacts directly without reading the maven-metadata.xml from Nexus. It does that only for the snapshot repository. It does try to resolve the artifacts through maven-metadata.xml from the 3rd party repository, but fails, as expected. The result is that it is not dealing with the snapshots in the proper way (timestamped). Gradle can’t find the artifact with the URL because it is assembling a complete artifact URL without a timestamp. The versions I’m interested in are of the format ‘1.0_V54+’ So any version greater than this version is okay. On https://gist.github.com/yeronimuz/6492539 I have put a log, the meta data and part of the build file as comment
What should be done for this snapshot repository so that it reads the repository via the maven-metadata.xml?