728x90
반응형
#스프링 이클립스(STS) pom.xml 파일 Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer 에러 해결 방법
#스프링 이클립스(STS) pom.xml
Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer 에러 해결 방법
-pom.xml 파일에 maven-war-plugin를 추가해줍니다.
<project...>
<build>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.2</version>
</plugin>
</plugins>
</build>
</project>
728x90
반응형
댓글