我应该用什么来获得以下maven报告?

时间:2012-02-13 14:00:22

标签: maven report

2 个答案:

答案 0 :(得分:9)

答案 1 :(得分:6)

您应该使用链接列出的确切插件依赖项:dependencies plugin

特别是其analyze-report插件。

以原始形式,你会:

1)将其添加到您的项目中:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>2.4</version>
    <executions>
        <execution>
            <id>copy</id>
            <phase>package</phase>
        </execution>
    </executions>
</plugin>

2)运行此命令:mvn dependency:analyze-report

生成的报告dependency-analysis.html将位于target文件夹中。

或运行mvn site以获得完整的网站。