Maven打包出现 webxml attribute is required (or pre-existing WEB-INF/web.xml

今天在打包Maven项目是出现这个错误

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.2:war 
(default-war) on project spring2: Error assembling 
WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode) -> [Help 1]

打包的时候没有找到web.xml.
原因:maven 插件 maven-war-plugin 中 Servlet 版本太低,要求必须要有web.xml文件才行。
解决方法:在pom.xml加入这个配置


        
            
                org.apache.maven.plugins
                maven-war-plugin
                2.2
                
                    false
                
            
        
    

你可能感兴趣的:(异常)