gpt4 book ai didi

java - 如何获取html格式的Maven报告?

转载 作者:行者123 更新时间:2023-11-30 03:40:25 26 4
gpt4 key购买 nike

我有一个 Maven 项目,带有 Eclipse 和一些 Selenium 测试。我可以在命令行中运行它们,并在目标文件夹中以 txt 和 xml 格式获取报告。

但我想要 html 格式的报告。我应该在 POM 文件中添加什么。

非常感谢。

这是我的 POM.xml

....
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.44.0</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.3</version>
</dependency>

<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0</version>
</dependency>

<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.3</version>
</dependency>

</dependencies>



<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>

<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>
</plugins>
</build>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>

最佳答案

参见this question ,正如第二个答案指出的那样,您应该能够使用 Maven Surefire Report plugin

“Surefire 报告插件解析 ${basedir}/target/surefire-reports 下生成的 TEST-*.xml 文件,并使用 DOXIA 呈现它们,这会创建测试结果的 Web 界面版本。”

下面是配置它的 XML:

<reporting>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.18</version>
</plugin>

</plugins>
</reporting>

以下任一命令都会调用它:

  • mvn 站点
  • mvn Surefire-report:report

关于java - 如何获取html格式的Maven报告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26934146/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com