본문 바로가기
Spring

[Spring] Could not resolve org.springframework.boot:spring-boot-gradle-plugin:3.1.2 해결 방법

by 노력남자 2023. 7. 26.
반응형

문제

 

IntelliJ에서 Spring Boot 3.x 버전을 만들었더니 뜬금없이 엄청나보이는 에러가 발생했다. 뭐여..

 

> Could not resolve all files for configuration ':classpath'.
   > Could not resolve org.springframework.boot:spring-boot-gradle-plugin:3.1.2.
     Required by:
         project : > org.springframework.boot:org.springframework.boot.gradle.plugin:3.1.2
         ...

 

 

원인

 

Spring Boot 3.x 버전은 JDK 17을 사용해야 하는데 내가 만든 프로젝트에선 JDK 17을 사용하지 않아 생기는 문제였다.

 

근데 나는 JDK 17 설정 다 했는데 저런 에러가 생겼다.

 

- build.gradle

 

 

- Project Structure

 

 

혹시 jdk 17이 없으면 아래 절차대로 다운로드를 받자.

 

 

 

해결책

 

Settings -> Build, Execution, Deployment -> Build Tools -> Gradle -> Gradle JVM을 17로 변경

 

반응형

댓글