Maven Jdepend report contains no data

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?

+3
source share
1 answer

Have you tried running "mvn -U -cpu site: site" to update all maven dependencies? Maybe this question is better to ask on the Maven forum :)

+1
source

Source: https://habr.com/ru/post/1697088/


All Articles