Intro Error Assembling WAR webxml attribute is required

Intro Error Assembling WAR webxml attribute is required

這篇介紹Error Assembling WAR webxml attribute is required。

錯誤訊息 & 原因

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:3.1.0:war (default-war) 
on project xxx: Error assembling WAR: webxml attribute is required
(or pre-existing WEB-INF/web.xml if executing in update mode) -> [Help 1]


pom.xml設定:
<executions>
<execution>
<id>default-war</id>
<configuration>
<webResources>
<resource>
<directory>src/main/config/prod</directory>
<targetPath>WEB-INF</targetPath>
<includes>
<include>web.xml</include>
</includes>
</resource>

因缺少src/main/config/prod該路徑的web.xml檔案造成compiler error。