이클립스 Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer 에러

study/기타 · 2022. 3. 11. 10:13

이클립스에서 Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer  해결방법

 

○ 현황

 

○ 해결방법

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-war-plugin</artifactId>
				<version>3.3.1</version>
				<executions>
					<execution>
						<id>default-war</id>
						<phase>package</phase>
						<goals>
							<goal>war</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

해결완료

'study > 기타' 카테고리의 다른 글

이클립스(eclipse) emmet 설치 , 사용방법  (0) 2020.06.19