我想实现中提到的解决方案如何指定码头-env.xml文件Maven的货物插件码头?
不过我现在面临更根本的东西:我的货根本就没有产生任何上下文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更换所产生的一个。 然而,当我尝试了,我无法找到货物产生的任何上下文XML(请注意,我说的自定义配置文件,并与cargo.jetty.createContextXml为真)
我不知道这是否是我的设置问题,导致没有产生的背景,或产生的背景地方我忽视。 我有目标/货运/和温度是货物扩大了我的WAR目录下检查,既没有地方包含上下文XML。
(我使用Maven 2.2.1,1.2.1货物,JDK 6)