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

I am hoping someone can help me with a problem I am struggling with.

When I try to build my project from the terminal I get this error:

Failed to read artifact descriptor for com.morrislgn.merchandising.common:test-data-utils:jar:0.3b-SNAPSHOT: Could not find artifact com.morrislgn.merchandising:merchandising:pom:0.3b-SNAPSHOT

The common.test-data-utils jar is created by a separate project and shared between this and another project (the other project doesn't build either, but that is down to another problem).

I am able to build com.morrislgn.merchandising.common:test-data-utils without issue, I can see the entry it makes in the .m2 local repository on my machine. I have reindexed my repository in Eclipse also.

The POM for my project has this entry:

<dependency>
    <groupId>com.morrislgn.merchandising.common</groupId>
    <artifactId>test-data-utils</artifactId>
    <version>0.3b-SNAPSHOT</version>
</dependency>

Which appears to be correct to me - the POM doesn't report any errors either when it is viewed in Eclipse.

Can some one tell me what I am missing here or doing wrong?

Cheers

Morris

share|improve this question

7 Answers

You can always try mvn -U clean install

-U Forces a check for updated releases and snapshots on remote repositories

share|improve this answer

I know I'm pretty late to the conversation, but I had this problem too. I think the issue was my company's firewall. My solution was to unplug from the network, connect to our open wireless and then force an update via Eclipse. This resolved everything.

share|improve this answer

I solved this issue by deleting in the repository folders where this error was shown everything except the .jar and .pom files.

share|improve this answer

Did not have any luck updating via eclipse. Had to use mvn clean install -U (which resolved everything).

share|improve this answer
2  
Gal Bracha answered this as well. Better to vote up a working answer and add comments if needed. – Brian White Dec 3 '12 at 20:24

You mention two different groupIds, com.morrislgn.merchandising.common and com.johnlewis.jec.webpim.common. Maybe this is the problem.

share|improve this answer
Good spot - no, its not unfortunatly. I copied the wrong tag from the POM XML, that was the one above the tag I needed and didnt spot what I'd done. Ooops! I've edited the question to fix my stupidity! – Morrislgn Jul 10 '11 at 20:42

I had the same issue with eclipse where the maven build command line worked just fine BUT try this

  • go into .m2/repository and wipe the directory associated
  • run update maven dependencies in eclipse

The error goes away....why my mvn command line worked with those directories and eclipse .m2eclipse could not, I have no idea and it kinda sucks. My project is now working in eclipse again.

share|improve this answer
on a side note, we switched to gradle....so much happier than ant and maven....extremely nice setup. – Dean Hiller May 8 at 19:57

"Failed to read artifact descriptor" problems generally indicate a problem with the dependency's pom file in the maven repository. I would suggest you to double check if the pom file's name is the same with the name maven expects, and also to check if the pom file contents are valid.

share|improve this answer

protected by Community Jan 10 at 19:29

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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