Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Maven warning message - "Selected war files include a WEB-INF/web.xml which will be ignored"

When building 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.

like image 545
Sefler Avatar asked Dec 03 '10 03:12

Sefler


2 Answers

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 https://issues.apache.org/jira/browse/MWAR-248.)

like image 152
anre Avatar answered Oct 13 '22 23:10

anre


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>                 <groupId>org.apache.maven.plugins</groupId>                 <artifactId>maven-war-plugin</artifactId>                 <version>2.6</version>                 <configuration>                     <packagingExcludes>WEB-INF/web.xml</packagingExcludes>                 </configuration>             </plugin>         </plugins>     </build>     ... </project> 
like image 30
Andrei Amariei Avatar answered Oct 13 '22 23:10

Andrei Amariei