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

I have an installed dependency in my local repository, remote repository dependency came from is down now for some reason. When I try to compile project, maven says that it can't resolve dependency. But why???

share|improve this question

1 Answer

up vote 9 down vote accepted

Maven will compare the local POM's timestamp (stored in a repository's maven-metadata file) to the remote. When maven does this depends on the updatePolicy that can be defined in your settings xml.

Either set this to never (discouraged) or skip this check (only when a remote repository appears to be down) by using the -o option (offline); then maven will not check remote repositories.

share|improve this answer
I have tried to put it in offline mode, but in that case it says, that as it is in offline mode it cant get dependency – michael nesterenko Mar 12 '11 at 20:06
By the way, I have solved (perhaps project is built and normally deployed) that problem by using install:install-file plugin – michael nesterenko Mar 12 '11 at 21:42
@TheStijn: Thanks Stijn, it worked for me :) – Arun Oct 3 '12 at 14:58

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.