<build>
<plugins>
<plugin>
<groupId>org.jboss.tattletale</groupId>
<artifactId>tattletale-maven</artifactId>
<!-- The version of the plugin you want to use -->
<version>1.1.0.Final</version>
<executions>
<execution>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- This is the location which will be scanned for generating tattletale reports
-->
<source>/absolute/path/to/reports/dir</source>
<!-- This is where the reports will be generated -->
<destination>/absolute/path/to/reports/dir</destination>
</configuration>
</plugin>
</plugins>
2条答案
按热度按时间9njqaruj1#
首先你需要从网站上下载这个工具,或者你可以直接到their sourceforge project location下载最新版本。
下载并解压缩后,从终端运行:
假设项目的位置是 ~/Java/workspaces/mycoolprojects/projectX,并且您希望生成的报告存储在名为 output-projectx 的文件夹中
最好的尼古拉
4jb9z9bj2#
如果你在你的项目中使用maven,你可以使用他们的插件。请相应地更改下面的位置。
<source>
-项目所在的文件夹<destination>
-您需要生成报告的位置然后运行
mvn clean package
如果不想运行测试,则在末尾添加标记
-DskipTests
您可以看到输出文件夹(/absolute/path/to/reports/dir)已创建文件。
打开index.html以查看报告