
build.gradle 파일에 compile('org.projectlombok:lombok') 위와 같은 코드를 추가하고 refresh 했는데 Could not find method compile() 에러 발생 compile, runtime, testCompile, testRuntime 명령어는 gradle 7.0 부터 삭제 삭제된 명령어를 사용해 오류가 난 것 위 명령어들은 implement, runtimeOnly, testImplementation, testRuntimeOnly로 변경되었다 implementation 'org.projectlombok:lombok' 그렇기에 compile 명령어를 implementation으로 변경해 주었다 해결 완 출처 : https://velog.io/@g0709-..
📁 STUDY/🔘 Spring Boot 2022. 8. 27. 21:50