I run the jdepend maven plugin in my project and whether I run the "mvn site: site" or "mvn jdepend: generate" report that is generated says "There is no package." There are no errors in maven output. Other plugins (cobertura, findbugs, etc.) work fine. My pom is configured as follows:
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
</plugin>
Any ideas?
mes5k source
share