Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer报错

先上错误图片:
在这里插入图片描述
maven项目建好后porm文件报错,错误提示为:
Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer

原因;

POM中包含有maven-war-plugin插件,插件版本太低

解决办法:
在build中加入如下代码:

 <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-war-plugin</artifactId>
        <version>3.3.1</version>
      </plugin>

从而更新插件的版本,添加之后,问题解决

猜你喜欢

转载自blog.csdn.net/m0_67391270/article/details/124505299