gpt4 book ai didi

maven - 如何避免使用 'mvn site' 运行 surefire 单元测试

转载 作者:行者123 更新时间:2023-12-04 18:08:48 24 4
gpt4 key购买 nike

每当我运行“mvn site”时,我所有的 surefire 单元测试都会被执行。有什么方法可以避免在运行 mvn 站点时运行 surefire 单元测试。我的 pom 如下所述。我在父项目中使用下面的 pom,所有模块都是这个 pom 的子项。

<plugins>
<!--For Unit tests -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
</plugin>
<!--For executing Integration tests in integration-test phase -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${failsafe.version}</version>
<configuration>
<excludes>
<exclude>**/*Test.java</exclude>
</excludes>
<includes>
<include>**/*IT.java</include>
</includes>
</configuration>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<!--For generating unit and integration test reports -->
<reporting>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
<reportSets>
<reportSet>
<reports>
<!--Disable all default reports -->
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<aggregate>true</aggregate>
<linkXRef>true</linkXRef>
</configuration>
</plugin>
</plugins>
</reporting>

最佳答案

根据插件documentation , 使用只报告

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>${surefire.version}</version>
<reportSets>
<reportSet>
<reports>
<report>report-only</report>
</reports>
</reportSet>
</reportSets>
</plugin>

surefire-report:report-only :以 html 格式创建格式良好的 Surefire 测试报告。这个目标不运行测试,它只构建报告。这是 https://issues.apache.org/jira/browse/SUREFIRE-257 的解决方法

关于maven - 如何避免使用 'mvn site' 运行 surefire 单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19741525/

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