본문 바로가기

카테고리 없음

[error pom.xml] Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer

728x90

problem

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

 

maven plugin war 를 초기화 할 수 없다.

 

 

 

 

 

cause

Project의 maven-war-glugin의 버전이 너무 낮아 오류 발생

 

 

 

resolving problem

 pom.xml의 <build>의 <plugins>에 maven-war-plugin을 추가하면 됩니다.

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