위의 사진처럼 pom.xml 파일의 좌측 상단에 에러가 뜨며, 에러 메세지를 보면 다음과 같이 뜬다.
pom.xml에 maven-war-plugin을 추가해 주면 정상적으로 작동하는 것을 알 수 있다.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin>