> I think there's functionality in maven for "SNAPSHOT" dependency of some
> kind. Not exactly sure how that works.
In Maven, you can specify a SNAPSHOT dependency:
[project.xml snippet]:
<dependency>
<groupId>framework</groupId>
<artifactId>Avalon-framework</artifactId>
<version>SNAPSHOT</version>
</dependency>
In this case, maven will always treat the framework:Avalon-framework
dependency as a "failed" dependency, meaning it will search for the latest
version available on the remote repositories.
It means your builds are a little longer since it will always download
(unless they fixed that recently), but you'll always use the latest version
too.
jaaron
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]