組み込みのTomcatを統合テストの前に開始し(Selenium + JBehaveを使用)、直後に停止しようとしています。
これが私がMavenを設定しようとした方法です:
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<id>start-tomcat</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>stop-tomcat</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
ただし、実行するとTomcatは正常に起動mvn integration-test
し、ストーリーを実行できないようです...
誰か助けてもらえますか?