Hi, is there a way to get Maven to download a specific snapshot version of a dependency? I know just specifying below will download the lastest snapshot available:
... <dependency> <groupId>groupid</groupId> <artifactId>artifact-id</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> ...
Is it possible specify a specific snapshot version? (Ex. artifact-id-1.0.0-20090610.041042-5) This would be useful if the head snapshot build has broken something and stable version of the dependency has yet to be officially released.