java1234开源博客系统
博客信息

maven pom.xml出现web.xml is missing and is set to true解决方案

0
发布时间:『 2018-03-09 13:08』  博客类别:maven  阅读(4414) 评论(0)

最近新建springboot项目,pom.xml报错 web.xml is missing and <failOnMissingWebXml> is set to true


主要项目里没有web.xml,我们只需要配置下

<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-war-plugin</artifactId>
	<configuration>
		<failOnMissingWebXml>false</failOnMissingWebXml>
	</configuration>
</plugin>


忽略web.xml即可;



关键字:   maven     pom.xml报错  
关注Java1234微信公众号
博主信息
Java1234_小锋
(知识改变命运,技术改变世界)
Powered by Java1234 V3.0 Copyright © 2012-2016 Java知识分享网 版权所有