我可以更改Surefire报告的名称,但是否也可以更改HTML报告的标题?
像在地方的“Surefire报告”我想要自定义文本。我在下面的Surefire插件,它更新HTML报告名称,如何更新标题,一旦我们打开报告,它在报告的顶部作为“Surefire报告”?
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.0.0-M7</version>
<configuration>
<outputName>Results-${env} Environment</outputName>
</configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>report-only</goal>
</goals>
</execution>
</executions>
</plugin>
1条答案
按热度按时间c7rzv4ha1#
只是通过命令行传递了
-Dsurefire.report.title="test"
,它更改了标题。