-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Component/s: maven-metadata-plugin
-
Labels:None
-
Similar Issues:
If I specify an artifact that is located in a SNAPSHOT repository, I get back a URL that is in the form:
http://<repoAddress>/some/group/id/some.artifact.id/1.0.0-SNAPSHOT/some.artifact.id-1.0.0-SNAPSHOT-<classifier>.<ext>
However SNAPSHOT artifacts are stored in the version folder using timestamps.
So the actual URL should look something like the following:
http://<repoAddress>/some/group/id/some.artifact.id/1.0.0-SNAPSHOT/some.artifact.id-1.0.0-<timestamp>-<artifactCount>-<classifier>.<ext>
I did it, added some unit tests, tested on my jenkins ci
see my pull request #5
HIH