On 1/21/07, Lee Bieber <[EMAIL PROTECTED]> wrote:
I'm having the exact same problem, we have a dependency on a jar file that has the version "1.0-SNAPSHOT" but it is not being automatically updated in my local repository when it changes in our common repository. I have the following in our pom.xml file:
...
Any ideas or updates on this problem??
If you are deploying with uniqueVersion=false, Maven 2.0.4 will not retrieve a new version of the snapshot. You'll have to delete it from your local repo to force an update. What does it look like in the remote repo? -1.0-SNAPSHOT.jar, or something like -2.0-20070119.230232-7.jar ? (Or check <distributionManagement> for the module you're trying to use. uniqueVersion defaults to true, so you would have to explicitly set it to false.) -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
