Possible Duplicate:
How do I tell Maven to use the latest version of a dependency?
Getting Maven Dependency. I want the latest version. Right now my pom has my firm Dependecy project in it like the following example. We are trying to find a way that we dont need the version tag in it that it will just take the latest version. Can this be done?
<dependency>
<groupId>org.xxxx.maven.test</groupId>
<artifactId>MavenJARTest</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>