🔴 failOnMissingWebXml ตั้งแต่ปี 2020
คำตอบอื่น ๆ ทั้งหมดเกี่ยวกับอาจล้าสมัยเพราะค่าเริ่มต้นที่ใช้โดย maven-war-plugin เปลี่ยนแปลง :
เริ่มต้นด้วย 3.1.0 คุณสมบัตินี้มีค่าเริ่มต้นเป็นเท็จหากโครงการขึ้นอยู่กับ Servlet 3.0 API หรือใหม่กว่า
ดังนั้นสิ่งเดียวที่คุณต้องทำคือการเพิ่ม
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
ตัวอย่าง:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>foo</groupId>
<artifactId>bar</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<tomcat.ignorePackaging>true</tomcat.ignorePackaging>
</properties>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.1.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>