라벨이 downgrade인 게시물 표시

[Solved] org.gradle.api.tasks.SourceSet.getCompileConfigurationName()Ljava/lang/String

이미지
 Gradle Build failed org.gradle.api.tasks.SourceSet.getCompileConfigurationName()Ljava/lang/String 그냥 아침에 간단히 테스트 해보고 싶은게 있어서 IntelliJ를 켜고 Spring-Boot 프로젝트를 생성했다. 그런데 생성과 동시에 실패의 메시지를 보니 대체 이게 무슨 일인지. Error Message FAILURE: Build failed with an exception. * What went wrong: Failed to notify build listener. > org.gradle.api.tasks.SourceSet.getCompileConfigurationName()Ljava/lang/String; * Try: Run with -stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. * Get more help at https://help.gradle.org CONFIGURE FAILED in 555ms 우선 영어는 언제 만나도 당황스럽다. 이것 저것 검색을 해 보았으나 마땅한 해결책이 없다. 아니 해결책이 적혀 있었다고 하더라도 영어라서 이해 못하고 놓친것 일수도... 대신 비슷해 보이는 내용 중에 이런게 있었다. Gradle 7.0 버전일 때 import failed or build fails Link :  https://youtrack.jetbrains.com/issues?q=getCompileConfigurationName# 그래서 Gradle 버전을 바꿔 보기로 했다. Gradle Releases  를 보면 내가 사용중이던 7.0.2가 최신이고. 나는 6.9로 Downgrade 하기로 했다. [Solved] Gradle Downgrade...