본문 바로가기
Java

[Eclipse] Maven Error-Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer 해결하기

by GGShin 2022. 6. 21.

아래 링크로 들어가면 여러 방법이 나와있는데,

저는 pom.xml에 아래 코드 추가하여 해결이 되었습니다.

 

혹시 동일한 에러가 나타나는 경우에 참고하시면 될 것 같습니다.

 

<build>
      <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>3.3.1</version>
        </plugin>
    </plugins>
    <finalName>project name</finalName>
</build>

 

 

https://www.onhandtrick.com/could-not-initialize-class-org-apache-maven-plugin-war-util-webappstructureserializer-pom-xml/

 

Maven Error-Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer - Onhandtrick

Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer maven error solve issue. This error occur in latest version of eclipse id.

www.onhandtrick.com

 

반응형