我想用jetty-maven-plugin作爲平臺,在那裏我可以用外部assambled戰爭來測試我的應用程序。jetty-maven-plugin with run-war停止maven執行
所以,我建立了我的Maven的碼頭,插件具有以下配置:
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<war>${project.build.directory}/some.war</war>
</configuration>
<executions>
<execution>
<id>start-jetty</id>
<phase>integration-test</phase>
<goals>
<goal>run-war</goal>
</goals>
<configuration>
<war>${project.build.directory}/some.war</war>
</configuration>
</execution>
<execution>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
<configuration>
<stopKey>stop</stopKey>
<stopPort>8888</stopPort>
</configuration>
</execution>
</executions>
</plugin>
當我運行它,我得到類似的東西:
[INFO] Started [email protected]{HTTP/1.1,[http/1.1]}{0.0.0.0:8888}
[INFO] Started @21213ms
[INFO] Started Jetty Server
這是確定的,但它停止執行。之後,我的測試應該運行,但它不會。我可以使用碼頭:開始這將是一個沒有戰爭的解決方法,因爲它會繼續執行測試,但我無法將戰爭文件附加到此目標。