On Wed, Nov 25, 2009 at 18:58, ChadDavis <[email protected]> wrote: > But that explains why the 1.6 branch, that I check out, has SNAPSHOT > artifact names in the pom?
SNAPSHOT as version suffix (it's not part of the artifactId) is a maven feature for things under development. For example, an upcoming 1.7.3 release would be developed under 1.7.3-SNAPSHOT. For snapshot versions, maven will simply use the newest one built (or downloaded). If you just want to download an existing release from sources, you should checkout the tags/1.6 folder. Regards, Alex -- Alexander Klimetschek [email protected]
