3

I'm running the jdepend maven plugin on my project and whether I run "mvn site:site" or "mvn jdepend:generate" the report that gets generated says "There are no package used." There are no errors in the maven output. Other plugins (cobertura, findbugs, etc.) run fine. My pom is configured like this:

<reporting>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jdepend-maven-plugin</artifactId>
        </plugin>

Any ideas?

4

1 回答 1

1

您是否尝试运行“mvn -U -cpu site:site”来更新所有 maven 依赖项?也许这个问题最好在 Maven 论坛中提出:)

于 2008-09-18T06:36:29.800 回答