My Ivy declaration is:
<dependency org="pmd" name="pmd" rec="4.2.5" conf="static-analysis->default">
<exclude module="xom|xml-apis|jdom|dom4j|xercesImpl|ant|junit"
matcher="regexp" />
</dependency>
Right now I have that in Maven as:
<dependency>
<groupId>pmd</groupId>
<artifactId>pmd</artifactId>
<version>4.2.5</version>
<exclusions>
<exclusion></exclusion>
</exclusions>
</dependency>
I am not sure how get the exclusion right. I am also not sure how convert the conf attribute from Ivy either.