반응형
<스프링 부트와 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')
}
반응형