views:

26

answers:

1

I've been using maven for a while, and I often review repositories before selected what version I want to use. I don't entirely understand what the extensions mean.

I know that when I see extensions like -RC1 and -RC2 that means release candidates. When I see a version without an extension, I assume that means a released version. But what does an extension of -M1 or -M2 mean?

Example:

2.8-RC1

2.8

2.8-M1 ??

+5  A: 

M1 means Milestone 1, it's a release name, like beta or alpha. RC means Release Candidate.

A milestone means that the application got a huge improvement from the todo list. A release candidate is a release that can be the final release unless some major bugs are found.


Resources :

Colin Hebert
thanks, so when looking for a finished product, RC is better than M.
Fred Haslam
That's right ;)
Colin Hebert