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

I've been facing this error fro quite a while now. Without being able to trace it back in time precisely, I feel it dates back from the switch to maven3.

Here's what happens:

  • I deploy artifact-SNAPSHOT from a server to an Artifactory instance
  • I force snapshot update on my local project that depends on artifact-SNAPSHOT

it doesn't work, I may get compilation error that shows the artifact-SNAPSHOT isn't the lastest one.

I have to either delete the local repo version of artifact-SNAPSHOT or get the lastest source and do a local 'mvn install' of artifact-SNAPSHOT.

Anyone facing the problem? Is it a known bug? If not, what could I check to understand exactly what happens?

cheers

share|improve this question

2 Answers

up vote 1 down vote accepted

This is a bug. Here is a link.

If you have worked on module-A (1.2.3-SNAPSHOT) for a while and you've run:

mvn clean install

This causes your local repository's metadata to 'lock' the artifact, meaning that it won't get updated anymore, as it thinks you're still working on it. So, if, let's say, in a couple of days you start working on module-B which depends on module-A:1.2.3-SNAPSHOT and there is a newer version installed in the remote repository, that version will completely be ignored. Thus, you'll have to remove the local directory that contains this dependency first and then do:

mvn clean install

all over again. Passing the -U doesn't help at all (which would actually be the natural thing to do).

share|improve this answer
The bug seem to concern only dependencies using classifier. It feels odd that nobody reported the problem with standard SNAPSHOT dep. yet. – nodje Jul 14 '11 at 8:24
1  
No, actually, it does not concern only classifier based artifacts. I just replied to you in the JIRA. It's a general problem. See my comment in the JIRA. – carlspring Jul 14 '11 at 8:32
Good catch, thanks, Out of curiosity, are you M. Todorov then? – nodje Jul 14 '11 at 8:44
Yes, Martin Todorov. :) – carlspring Jul 14 '11 at 8:44
Please, vote for it to be fixed. At least in 3.x. – carlspring Jul 14 '11 at 8:45
show 4 more comments

Is it this bug: http://jira.codehaus.org/browse/MNG-4987 ? -> use maven 3.0.3

share|improve this answer
using 3.0.3 already, not this bug ;), cheers – nodje Jul 14 '11 at 8:17

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.