차밍이
[Spring-boot] Gradle Could not find method compile() 오류 해결 방법 본문
반응형
오류 메세지
Could not find method compile() for arguments
Count not find method compile()
에러가 계속 발생되는 문제가 발생했다.
오류 해결 방법
stackoverflow 에 검색했더니 다음과 같이 나왔다.
compile
, runtime
, testCompile
, and testRuntime
는 Gradle 4.10 부터 없어졌다고 한다.
대신 implementation
, runtimeOnly
, testImplementation
, and testRuntimeOnly
를 사용하라고 한다.
원문
Note that the
compile
,runtime
,testCompile
, andtestRuntime
configurations introduced by the Java plugin have been deprecated since Gradle 4.10 (Aug 27, 2018), and were finally removed in Gradle 7.0 (Apr 9, 2021).
The aforementioned configurations should be replaced byimplementation
,runtimeOnly
,testImplementation
, andtestRuntimeOnly
, respectively.
링크 : https://stackoverflow.com/questions/23796404/could-not-find-method-compile-for-arguments-gradle
반응형
'Java > Spring' 카테고리의 다른 글
[Spring-boot] VScode에서 Lombok 적용하기 (0) | 2022.07.19 |
---|---|
[Spring-boot] the import javax.persistence cannot be resolved 해결방법 (0) | 2022.07.18 |
관련된 글 보기
Comments