요약
Spring Initialize를 통해 Spring Boot Starter를 셋팅하고 있었는데 pox.xml 파일에서 spring-boot-maven-plugin 버전 오류가 발생했습니다.
해결
pox.xml
파일에 <parent>
태그에 spring-boot-starter의 version이 기재되어 있습니다.
이를 참고하여 동일하게 버전 정보를 추가하면 됩니다.
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.6.7</version> // add.
</plugin>
</plugins>
</build>
'Dev > Trouble Shooting' 카테고리의 다른 글
InteliJ "Cannot connect to already running IDE instance" Exception: Process <process_id> is still running" 오류 (0) | 2024.02.21 |
---|---|
Dockerzied 한 Flask API 서버에서 console log 가 안 찍혀요. (0) | 2022.11.21 |
텐서플로우 도커 환경을 사용해야 하는데 GPU가 없다면? (0) | 2022.11.17 |
NestJS 버전에 따른 Swagger 오류, Cannot find module '@nestjs/core/router/route-path-factory’ (0) | 2022.07.22 |
Docker Build 시 Node Alpine 버전에서 bcrypt 오류 (0) | 2022.05.21 |