我正在努力让前后集成阶段与maven一起工作,但无济于事。
我的目标是通过运行一些必要的二进制文件来设置和拆除集成测试。我正在使用antrun-plugin
和exec-plugin
进行测试,但没有一个打印消息。
我正在运行mvn verify
。如果我将插件绑定到clean
阶段并运行mvn clean
,则会显示echo消息和ls
。
怎么了?我正在使用maven3
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.12.3</version>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
<execution>
<id>verify</id>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>pre-integration-test</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>ls</executable>
<arguments>
<argument>-la</argument>
</arguments>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>xxx</id>
<configuration>
<target>
<echo>Cleaning deployed website</echo>
</target>
</configuration>
<phase>pre-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
答案 0 :(得分:0)
我帮助其他人正确配置了故障安全插件earlier。尝试明确指定故障安全插件执行中的阶段。不确定为什么需要这样做,因为故障安全插件文档说默认情况下目标应该被绑定到正确的阶段 - 但似乎是。