문제
아래와 같이 compile group 을 추가하려고 하는데, No candidates found for method call 오류가 발생했다.
당연히 reload 시 Exception이 발생한다.
Caused by: org.gradle.internal.metaobject.AbstractDynamicObject$CustomMessageMissingMethodException: Could not find method compile() for arguments
해결
찾아보니 gradle 3.0부터 compile 이 deprecated되었다고 한다.
compile을 implementation 으로 변경해서 오류 해결.
'💻IT' 카테고리의 다른 글
[Spring Boot][Error] Frontend에서 API 호출 시 CORS 문제 (0) | 2021.11.15 |
---|---|
[Vue.js][Error] scss 파일 로드 시 Can't reslove 'sass-loader' 오류 (0) | 2021.11.15 |
[Vue.js][Error] assigned a value but never used 앱 실행 오류 (0) | 2021.11.15 |
[Git] .gitignore 파일이란? (0) | 2021.11.02 |
[IntelliJ][Error] Console 창 한글 깨짐 문제 해결 (1) | 2021.10.31 |