[WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ignored (webxml attrib
Posted 邱明成
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ignored (webxml attrib相关的知识,希望对你有一定的参考价值。
WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ignored (webxml attribute is missing from war task, or ignoreWebxml attribute is specified as ‘true‘)
在使用Maven 编译项目的时候会出现
[WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ignored
解决方法:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<!-- http://maven.apache.org/plugins/maven-war-plugin/ -->
<packagingExcludes>WEB-INF/web.xml</packagingExcludes>
</configuration>
</plugin>
以上是关于[WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ignored (webxml attrib的主要内容,如果未能解决你的问题,请参考以下文章