본문 바로가기
카테고리 없음

Could not find method compile() for arguments

by 알랴주는남자 2023. 1. 19.
반응형

<스프링 부트와 AWS로 혼자 구현하는 웹 서비스> 

 

실습 중 나타난 에러  

 

dependencies {
    compile ('org.springframework.boot:spring-boot-starter-web')
    testCompile('org.springframework.boot:spring-boot-starter-test')
}

 

Could not find method compile() for arguments [org.springframework.boot:spring-boot-starter-web]

 

 

compile, runtime, testCompile, testRuntime  Gradle 7.0 (2021년 4월) 부터 삭제

 

삭제된 네 명령은 각각 implementation, runtimeOnly, testImplementation, testRuntimeOnly 으로 대체됨.


따라서 compile  implementation 으로 수정

testCompile을 testImplementation 으로 수정하여 오류를 해결함.

 

dependencies {
    implementation ('org.springframework.boot:spring-boot-starter-web')
    testImplementation('org.springframework.boot:spring-boot-starter-test')
}

 

반응형