Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

up vote 58 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>
share|improve this answer
12  
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 '12 at 18:04
Solution in the answer works perfectly. – lanoxx Jan 27 '12 at 12:05
1  
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 '12 at 21:05
1  
I am down-voting this response, because while it does get rid of the error warning, it is the wrong and confusing thing to do! You should do what shockwave described or if you are happy with the default web.xml then don't write one yourself at all. – Ustaman Sangat Oct 17 '12 at 16:07
show 2 more comments

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

share|improve this answer
This bug is reported as closed but I get this message in maven 3.0.4 on windows 7. Even after adding <webXml>src/main/webapp/WEB-INF/web.xml</webXml> to my pom.xml – simgineer Jul 9 '12 at 20:57
@simgineer, you should comment inside the bug report. If that doesn't help, consider opening a new bug report and linking to it from here. – Gili Jul 10 '12 at 15:20

It seems to be fixed in current version of maven-war-plugin, so just specifying:

    <plugin>
        <artifactId>maven-war-plugin</artifactId>
        <version>2.3</version>
    </plugin>

fixed it for me. (See the last answer (20/Sep/12 4:37 AM) from Anders Hammar on http://jira.codehaus.org/browse/MWAR-248.)

share|improve this answer
Agreed. As of version 2.3, they finally took care of this annoying warning message for OCD programmers like me :) – Lenny Markus Nov 27 '12 at 3:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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