|
|
|
@ -195,17 +195,17 @@ class MavenDownloader:
|
|
|
|
|
return v[0]
|
|
|
|
|
|
|
|
|
|
def find_uri_for_artifact(self, artifact):
|
|
|
|
|
if artifact.version == "latest":
|
|
|
|
|
artifact.version = self._find_latest_version_available(artifact)
|
|
|
|
|
|
|
|
|
|
if artifact.is_snapshot():
|
|
|
|
|
path = "/%s/maven-metadata.xml" % (artifact.path())
|
|
|
|
|
xml = self._request(self.base + path, "Failed to download maven-metadata.xml", lambda r: etree.parse(r))
|
|
|
|
|
timestamp = xml.xpath("/metadata/versioning/snapshot/timestamp/text()")[0]
|
|
|
|
|
buildNumber = xml.xpath("/metadata/versioning/snapshot/buildNumber/text()")[0]
|
|
|
|
|
return self._uri_for_artifact(artifact, artifact.version.replace("SNAPSHOT", timestamp + "-" + buildNumber))
|
|
|
|
|
else:
|
|
|
|
|
if artifact.version == "latest":
|
|
|
|
|
artifact.version = self._find_latest_version_available(artifact)
|
|
|
|
|
|
|
|
|
|
return self._uri_for_artifact(artifact, artifact.version)
|
|
|
|
|
return self._uri_for_artifact(artifact, artifact.version)
|
|
|
|
|
|
|
|
|
|
def _uri_for_artifact(self, artifact, version=None):
|
|
|
|
|
if artifact.is_snapshot() and not version:
|
|
|
|
|