[SpringBoot3] Gradle 빌드 오류(Could not build action using Gradle distribution)

문제

Could not run phased build action using connection to Gradle distribution 오류 발생하면서 Gradle 빌드가 되지 않는 오류 발생

해결

gradle 버전이 일치하지 않아서 발생하는 문제이며, gradle 경로에서 사용하지 않는 버전을 삭제한다.

(또는 설치된 모든 gradle을 모두 삭제한 후 새로 build를 하면 자동으로 선언되어 있는 버전을 새로 다운받는다.)

Windows: C:\Users\[UserName]\.gradle\wrapper\dists

OSX: ~/.gradle/wrapper/dists

사용하지 않는 gradle 삭제

이후에 Gradle에서 Build를 다시 수행한다.

참고

https://stackoverflow.com/questions/68321708/could-not-run-phased-build-action-using-connection-to-gradle-distribution

 

"Could not run phased build action using connection to Gradle distribution"

I'm having various Gradle problems after a new clean Eclipse install. They seem to be associated w/ this "Problem" message: Could not run phased build action using connection to Gradle

stackoverflow.com

 

반응형