본문 바로가기

개발중/troubleshooting

[해결] Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer

728x90
반응형

 

 

pom.xml 에 이런 에러가 뜬다.

 

 

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

 
plugin 을 추가해주자.
 
<plugin>
  <artifactId>maven-war-plugin</artifactId>
  <version>3.2.2</version>
</plugin>

 

 


 

728x90
반응형