1. 발생한 에러
Description Resource Path Location Type
Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer pom.xml /webprj line 1 Maven Configuration Problem
2. pom.xml 설정
2.1 이하 설정을 pom.xml에 추가
<dependencies>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin>
</plugins>
</build>
2.2. 프로젝트를 오른쪽 클릭한 뒤, Maven > Update Project... 를 클릭