Could not find method compile() for arguments [org.springframework.boot:spring-boot-starter-web] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
Could not find method compile() for arguments [org.springframework.boot:spring-boot-starter-web] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
🌳 환경
🔥 문제
- 프로젝트 초기 세팅 후 Gradle 빌드 과정에서 오류
🧯 해결
complie
, runtime
, testComplie
, testRuntime
Gradle 7.0 (2021.4.9) 부터 삭제
- 대체된 메서드
complie
→ implementation
runtime
→ runtimeOnly
testCompile
→ testImplementation
testRuntime
→ testRuntimeOnly