본문 바로가기

JAVA/Error

[Error] Eclipse spring MVC pom.xml 오류 - Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer

1. MVC project 생성 후 pom.xml 첫 줄 오류

 

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

 

원인 : Maven version이 낮아서 생기는 오류.

 

 

2.  Maven-war-plugin dependency 추가

 

<!-- maven war plugin -->
<plugin>
	<artifactId>maven-war-plugin</artifactId>
	<version>3.2.2</version>
</plugin>

 

해결 완료.