Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web)

eclipse 打包maven打war包項目的時候提示:

Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode)

pom.xml中加入以下依賴,讓maven打包項目的時候找eclipse默認的WebContent目錄下web.xml

<plugins>  
    <plugin>  
        <groupId>org.apache.maven.plugins</groupId>  
        <artifactId>maven-war-plugin</artifactId>  
        <version>2.1.1</version>  
        <configuration>  
            <webResources>  
                <resource>                      
                <!-- this is relative to the pom.xml directory -->  
                <directory>WebContent</directory>  
                </resource>  
            </webResources>  
        </configuration>  
    </plugin>  
</plugins>  

 

 



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章