答案 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
以获得完整的网站。