2

我正在尝试使前后集成阶段与 Maven 一起工作,但无济于事。我的目标是通过运行一些必要的二进制文件来设置和拆除集成测试。我正在使用antrun-pluginand进行测试exec-plugin,但它们都没有打印消息。

我在跑步mvn verify。如果我将插件绑定到cleanphase 并 run mvn clean,则会显示回显消息和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>
4

1 回答 1

0

我帮助其他人早先正确配置了故障保护插件。尝试明确指定故障安全插件执行中的阶段。不知道为什么需要这样做,因为故障安全插件文档说目标应该默认绑定到正确的阶段 - 但它似乎是。

于 2012-09-13T15:39:08.673 回答