eclipse maven POM Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSeriali


eclipse从2021-03更新为2021-06后,POM文件第一行有Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer

原因:POM中包含有maven-war-plugin插件版本低

1 
2   org.apache.maven.plugins
3   maven-war-plugin
4   2.4
5   
6     false
7   
8 

 将过低的版本号2.4,改为较高的版本号,比如3.3.1

1 
2   org.apache.maven.plugins
3   maven-war-plugin
4   3.3.1
5   
6     false
7   
8