When I build my WAR package using Maven 2.1.1, I get this warning message:

[WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ig
nored
(webxml attribute is missing from war task, or ignoreWebxml attribute is specifi
ed as 'true')

Is there a way to eliminate it? It doesn't fail the building process, but I just do not want to see it. Thanks.

link|improve this question

feedback

3 Answers

up vote 42 down vote accepted

I got rid of this warning in maven 3.0.1 with the following build configuration (i believe perhaps web.xml is added to the project by other means, and should't be packaged by default):

<project>
    ...
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.1.1</version>
                <configuration>
                    <packagingExcludes>WEB-INF/web.xml</packagingExcludes>
                </configuration>
            </plugin>
        </plugins>
    </build>
    ...
</project>
link|improve this answer
5  
I found you can add this to the configuration to be sure web.xml makes it in. At this time it appears optional, but better safe than sorry. <webXml>src/main/webapp/WEB-INF/web.xml</webXml> – shockwave Jul 21 '11 at 13:43
Including the project-relative path doesn't seem to work; however, the format in the answer does. – yock Jan 23 at 18:04
Solution in the answer works perfectly. – lanoxx Jan 27 at 12:05
I'll try this. Within <configuration> I also have <warName>${package.final.name}</warName>. What does this do? – Matthew Doucette Feb 1 at 17:10
I had to use <version>2.2</version> or the war will contain a default web.xml instead of the one I specify. 2.1.1 worked for a while, but not anymore. – Lost In Code Feb 22 at 21:05
feedback

I've filed the following bug report regarding this issue: http://jira.codehaus.org/browse/MWAR-248

link|improve this answer
feedback

This is also important: http://ant.1045680.n5.nabble.com/What-does-the-warning-quot-selected-war-files-include-a-WEB-INF-web-xml-which-will-be-ignored-quot-m-td1349858.html

It says:

It likes you to explicitly declare your web.xml file via the webxml attribute. When it sees a WEB-INF/web.xml file in the filesets it is including, and that file is not the same one you asked for earlier, it warns that the file is being ignored.

its only a warning, but it does mean that you may not end up with the web.xml file you were expecting

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.