I'm trying to get maven site working, but I'm blocked on this error.

[INFO] Failed to resolve artifact.

Failed to resolve artifact, possibly due to a repository list that is not appropriately equipped for this artifact's metadata.
org.apache.maven.plugins:maven-pmd-plugin:pom:2.6-SNAPSHOT

from the specified remote repositories: sonar (http://sonar:9000/deploy/maven),
central (http://repo1.maven.org/maven2),
risk-idi (http://nexus.yyy.com/nexus/content/groups/public-all)

I'm using maven 2.2.1 and maven site plugin version 2.2.

Any help will be appreciated.

link|improve this question

what have you got so far, can you paste pom.. or some info .. we don't really see all in your monitor.. – ant Mar 3 '11 at 22:09
Please paste in or link the relevant sections of running maven with the -e flag – Robert Munteanu Mar 3 '11 at 22:09
I figured out the issue. I should be specifying the plugin in reporting section to make mvn site work.maven.40175.n5.nabble.com/… – Vanchinathan Chandrasekaran Mar 3 '11 at 22:17
feedback

1 Answer

up vote 1 down vote accepted

I've found no maven-pmd-plugin-2.6-SNAPSHOT in the official maven repository (proof). You can try to specify its version explicitly:

<project>
  ...
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-pmd-plugin</artifactId>
        <version>2.5</version>
      </plugin>
    </plugins>
  </reporting>
  ...
</project>

Configuration is taken from here.

link|improve this answer
What if I do not need the pmd plugin report at all. When I run maven site. It needs it. why it is so? – Vanchinathan Chandrasekaran Mar 4 '11 at 16:03
feedback

Your Answer

 
or
required, but never shown

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