JettyのMavenCargoプラグインにjetty-env.xmlファイルを指定する方法に記載されているソリューションを実装しようとしていますか?
しかし、私はさらに根本的な問題に直面しています。私の貨物は、コンテキストxmlを生成していません。
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<!-- Container configuration -->
<container>
<containerId>jetty6x</containerId>
<type>embedded</type>
</container>
<!-- Configuration to use with the container or the deployer -->
<configuration>
<properties>
<cargo.servlet.port>${itest.webapp.port}</cargo.servlet.port>
<cargo.jetty.createContextXml>true</cargo.jetty.createContextXml>
</properties>
<deployables>
<deployable>
<groupId>${project.groupId}</groupId>
<artifactId>myApp-web</artifactId>
<type>war</type>
<properties>
<context>/myApp</context>
</properties>
</deployable>
</deployables>
<!--
<configfiles>
<configfile>
<file>${project.build.outputDirectory}/jetty-env.xml</file>
<todir>contexts</todir>
<tofile>${jetty6.context}.xml</tofile>
</configfile>
</configfiles>
-->
</configuration>
</configuration>
<executions>
<execution>
<id>start-container</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>stop-container</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
基本的な考え方は、生成されたものを置き換えるためのカスタムcontext.xmlを提供することです。ただし、試してみると、Cargoによって生成されたコンテキストXMLが見つかりません(カスタム構成ファイルに注意し、cargo.jetty.createContextXmlがtrueであることに注意してください)。
設定の問題でコンテキストが生成されないのか、見落とした場所でコンテキストが生成されるのかわかりません。target / cargo /とtempディレクトリで、cargoがWARを拡張したことを確認しましたが、どちらの場所にもコンテキストxmlが含まれていません。
(私はMaven 2.2.1、Cargo 1.2.1、JDK 6を使用しています)