gpt4 book ai didi

Maven 没有使用故障安全插件进行集成测试

转载 作者:行者123 更新时间:2023-12-04 17:12:33 25 4
gpt4 key购买 nike

当我跑 mvn clean install ,为 integration-test阶段它不使用故障安全插件。

但是,如果我明确调用插件来运行集成测试,它就可以工作( mvn failsafe:integration-test )。

当我运行 mvn clean install 时,如何让 maven 使用故障安全插件期间integration-test阶段?

最佳答案

引自 official documentation :

To use the Failsafe Plugin, you need to add the following configuration
to your pom.xml

<project>
[...]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.11</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
[...]
</project>

这是你要找的吗?

关于Maven 没有使用故障安全插件进行集成测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6377217/

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