Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With Maven 3.0.3 I'm getting a "Could not resolve dependencies..." error for a project I'm working on:

[ERROR] Failed to execute goal on project arquillian-jetty-embedded-6.1: 
Could not resolve dependencies for project 
org.jboss.arquillian.container:arquillian-jetty-embedded-6.1:jar:1.0.0-SNAPSHOT: 
Failed to collect dependencies for [
org.jboss.arquillian.container:arquillian-container-spi:jar:1.0.0.CR1-SNAPSHOT (compile), 
org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.0.0.CR1-SNAPSHOT (compile), 
org.jboss.arquillian.protocol:arquillian-protocol-servlet:jar:1.0.0.CR1-SNAPSHOT (compile), 
org.jboss.arquillian.testenricher:arquillian-testenricher-cdi:jar:1.0.0.CR1-SNAPSHOT (compile), 
org.jboss.arquillian.testenricher:arquillian-testenricher-resource:jar:1.0.0.CR1-SNAPSHOT (compile), 
org.jboss.arquillian.testenricher:arquillian-testenricher-initialcontext:jar:1.0.0.CR1-SNAPSHOT (compile), 
org.jboss.shrinkwrap.container:shrinkwrap-container-jetty-60:jar:1.0.0-beta-1 (compile), 
org.mortbay.jetty:jetty:jar:6.1.12 (provided), 
org.mortbay.jetty:jetty-plus:jar:6.1.12 (provided), 
org.jboss.arquillian.junit:arquillian-junit-container:jar:1.0.0.CR1-SNAPSHOT (test), 
junit:junit:jar:4.8.1 (test), 
javax.enterprise:cdi-api:jar:1.0 (test), 
org.mortbay.jetty:jetty-naming:jar:6.1.12 (test), 
org.glassfish.web:el-impl:jar:2.2 (test), 
javax.servlet.jsp:jsp-api:jar:2.2 (test), 
com.h2database:h2:jar:1.2.138 (test), 
org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven:jar:1.0.0-beta-2 (test)]: 
Failed to read artifact descriptor for org.jboss.interceptor:jboss-interceptor-api:jar:1.1: 
Could not transfer artifact org.jboss.interceptor:jboss-interceptor-api:pom:1.1 
from/to repository.jboss.org (http://repository.jboss.org/maven2): 
Access denied to: 
http://repository.jboss.org/maven2/org/jboss/interceptor/jboss-interceptor-api/1.1/jboss-interceptor-api-1.1.pom -> 
[Help 1]

I know the error is occurring because a dead repository is being referenced, and that I can work around it by configuring an active mirror for that repository in my settings.xml. I know the artifact in question, jboss-interceptor-api, is not a direct dependency of the project I'm working on, nor is the project referencing the dead repository directly. What's not clear is how could I determine the offending transitive dependency and its lineage to the project in question? I'd like to correct the underlying issue, or at least inform those who could.

I've searched my local repository and found several references to the dead repo, but none of those artifacts are amongst the dependencies listed in the above error message. I get the error trying to run mvn -U dependency:tree on the project, so no help there either. I'm also not seeing any clues in the -X debug output, though I could post it all if desired.

share|improve this question
I don't have an answer, but here are some ideas. Have you tried loading the project in an IDE? I know intellij lets you see a dependency graph. Maybe it'd work. Also, it may show you the error on the dependency that's causing all the problems. Or, maybe if you mirrored the repository you'd be able to do a dependency:tree and find the bad dependency. – tieTYT Jan 2 at 18:56
What is not clear to me is what you mean by : "dependency referring to a defunct maven repo". Unless special configuration (in a complex parent pom for instance), a dependency is not bound to a repo, but instead maven searches in its known repos to resolve the missing dependencies. – Samuel EUSTACHI Feb 15 at 9:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.