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

I imported my working project on other computer so it started to download dependencies. Apparently in the meantime my internet connection crashed. Now I get

Build errors for comics; org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal on project comicsTest: Could not resolve dependencies for project comicsTest:comicsTest:war:0.0.1-SNAPSHOT: The following artifacts could not be resolved: org.springframework:spring-context:jar:3.0.5.RELEASE, org.hibernate:hibernate-entitymanager:jar:3.6.0.Final, org.hibernate:hibernate-core:jar:3.6.0.Final, org.hibernate:hibernate-commons-annotations:jar:3.2.0.Final, org.aspectj:aspectjweaver:jar:1.6.8, commons-lang:commons-lang:jar:2.5, mysql:mysql-connector-java:jar:5.1.13: Failure to transfer org.springframework:spring-context:jar:3.0.5.RELEASE from http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact org.springframework:spring-context:jar:3.0.5.RELEASE from central (http://repo1.maven.org/maven2): No response received after 60000

And I have no idea how to force maven to update?

share|improve this question

4 Answers

up vote 21 down vote accepted

Do a

  mvn clean

to clean your target dir, then run your maven command as usual. You can also add the -U option to update your snapshots.

share|improve this answer
20  
"clean" isn't the same as "force" in the context of the error message provided. – Marvo Mar 27 '12 at 21:25
mvn clean install -U

-U means force update of dependencies.

share|improve this answer
12  
I agree with lwpro2, this solved my problem as well. Just doing mvn clean isn't enough. The answer of Navi is not enough to solve the problem. – ries Jul 19 '12 at 22:15

-U seems to force update of all dependencies. If you want to update a single dependency without clean or -U you could just remove it from your local repo and then build. The example below if for updating slf4j-api 1.7.1-SNAPSHOT:

rm -rf ~/.m2/repository/org/slf4j/slf4j-api/1.7.1-SNAPSHOT
mvn compile
share|improve this answer

If you're unsure what is inside your local repository, I recommend to fire a build with the option:

-Dmaven.repo.local=localrepo

That way you'll ensure to build in a cleanroom environment.

share|improve this answer

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.