I want to get out the latest artifact from the repository, irrespective of what version number it is on.
e.g. If I have 2 artifacts in the repository like so:
1.0-SNAPSHOT 1.1-SNAPSHOT
I would like a URL that allows me to get out the 1.1-SNAPSHOT version.
According to the documentation, (http://www.jfrog.com/confluence/display/RTF/Artifactory+REST+API#ArtifactoryRESTAPI-RetrieveLatestArtifact) this is possible with release versions by adding [RELEASE] into the GET URL where the version number should be.
I'm not sure how I would do this equivalently with snapshots.
(NB. Maven supports this feature through LATEST and RELEASE version indicators, but I am using wget at this point)
thanks.