0

テストフェーズではなく、統合フェーズの一部としてmaven-easyb-pluginを実行することは可能ですか?プロジェクトがWebサーバーにデプロイされたら、easybテストを実行したいと思います。

                 <plugin>
                    <groupId>org.easyb</groupId>
                    <artifactId>maven-easyb-plugin</artifactId>
                    <version>1.4</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>test</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <storyType>html</storyType>
                        <storyReport>target/easyb/easyb.html</storyReport>
                        <easybTestDirectory>src/test/stories</easybTestDirectory>
                        <jvmArguments>-Xmx512m -Dwebdriver.driver=firefox</jvmArguments>
                    </configuration>
                </plugin>
4

1 に答える 1