I have a Sonatype Nexus OSS install, and I have artifacts on it. However, when using "LATEST" for the version in the pom.xml, I get an unresolved dependency error. Is there something I have to enable to allow the LATEST keyword? I've looked everywhere
Asked
Active
Viewed 285 times
0
-
What's the Pom.xml look like - i.e., where you are using that keyword? Might help to see it. If you haven't already, You might look at comments here: http://stackoverflow.com/a/1172371/652078 – sairn Aug 14 '13 at 02:04
1 Answers
0
The Maven client does not true support dynamic revisions. The closest thing it supports are snapshot revisions, where a revision like 1.0-SNAPSHOT, is resolved to the latest time-stamped artifact.
I think you may be confusing the Maven POM with the REST API used by Nexus. This the ability to specify a "LATEST" version:

Mark O'Connor
- 76,015
- 10
- 139
- 185