Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to get Maven to download a specific snapshot version of a dependency? I know that specifying the dependency like this will download the lastest snapshot available:

<dependency>
<groupId>groupid</groupId>
<artifactId>artifact-id</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>

Is it possible to specify a specific snapshot version? (e.g.artifact-id-1.0.0-20090610.041042-5) This would be useful if the head snapshot build has broken something and the stable version of the dependency has yet to be officially released.

share|improve this question

3 Answers

up vote 1 down vote accepted

Yes, you can. Any version that is in your maven repositories can be used. I've ran into some problems where the trasnsitive dependencies mucked with the version though. That's where mvn dependency:tree came in handy.

share|improve this answer
1  
OP asks about specific snapshot version, not a published release version. – Palimondo Mar 18 '10 at 10:07

To use a specific snapshot version of a dependency, the referenced artifact should be installed/deployed with a unique snapshot version number. See the uniqueVersion element in the POM reference/Repository. In this case you can reference it like:

...
<dependency>
<groupId>groupid</groupId>
<artifactId>artifact-id</artifactId>
<version>1.0.0-20090610.041042-5</version>
</dependency>
...

Maven repository manager servers may have additional related features, like overriding the pom.xml's uniqueVersion setting. For example see the Artifactory User Guide about this feature (additionally, you can read here some arguments against using unique snapshot version numbers).

share|improve this answer

AFAIK the SNAPSHOT always refers to the latest build and there is no way to depend on specific version.

To work around this issue, you could republish the exact version you want to depend on on your own maven repository and assign it a specific version.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.