- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当尝试将故障安全绑定(bind)到生命周期时,根本不会执行任何操作。我已阅读this guide和 this related question ,根据这个信息,应该可以让maven执行目标integration-test
integration-test
中的故障保护,当我在 build/pluginManagement/plugins
中指定它时-pom.xml 中的部分如下所示:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.17</version>
<configuration>
<includes>
<include>**/*IT</include>
</includes>
</configuration>
<executions>
<execution>
<id>failsafe-integration-tests</id>
<phase>integration-test</phase>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
<execution>
<id>failsafe-verify</id>
<phase>verify</phase>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
不幸的是,这并不强制maven运行failsafe:integration-test(既不使用mvnintegration-test也不使用mvnverify)
但是,如果我尝试将故障保护与这样的插件规范一起使用(来自here并添加了配置):
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.17</version>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<phase>integration-test</phase>
<configuration>
<includes>
<include>**/*IT</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
至少 Maven 编译故障安全:集成测试运行。但不幸的是,这并没有调用集成前和集成后测试。我现在为此苦苦挣扎了一段时间,但没有任何线索 - 它应该按原样绑定(bind)。
有谁知道为什么会发生这种情况,或者我该如何解决它?
最佳答案
您所做的就是仅在pluginManagement 中定义它,但您必须像这样运行它。 pluginManagement 中的定义是固定插件版本的好习惯。
<project>
[...]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
[...]
</project>
除此之外,没有必要为 maven-failsafe-plugin cause it has already defaults defined 提供包含规则所以没有必要。
关于java - 绑定(bind)到 Maven 中的生命周期不适用于故障安全和集成测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23785443/
我正在开发一个使用多个 turtle 的滚动游戏。玩家 turtle 根据按键命令在 Y 轴上移动。当危害和好处在 X 轴上移动时,然后循环并改变 Y 轴位置。我尝试定义一个名为 colliding(
我不明白为什么他们不接受这个作为解决方案,他们说这是一个错误的答案:- #include int main(void) { int val=0; printf("Input:- \n
我正在使用基于表单的身份验证。 我有一个注销链接,如下所示: 以及对应的注销方法: public String logout() { FacesContext.getCurren
在 IIS7 应用程序池中有一个设置 Idle-time out 默认是 20 分钟,其中说: Amount of time(in minutes) a worker process will rem
我是一名优秀的程序员,十分优秀!