When i deploy a webapp using eclipse wtp, the custom "webxml" file specified in pom.xml is not copied to WEB-INF folder as 'web.xml' . However the file is correctly copied in the war in the WEB-INF folder.
Here is the snippet from pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<webXml>${webXmlPath}</webXml>
<packagingExcludes>WEB-INF/web.xml</packagingExcludes>
</configuration>
</plugin>
${webXmlPath} depends on the profile and has a default value:
<properties>
<webXmlPath>${basedir}/src/main/webapp/WEB-INF/web-embed.xml</webXmlPath>
</properties>
thanks :)