What is the convention in having a SNAPSHOT in maven version names?
What does SNAPSHOT mean and when should I use it in the version name of my project?
Example:
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-project</artifactId>
<version>9.1.0-SNAPSHOT</version>
</dependency>