Could not find org.projectlombok:lombok:.
Required by:
project :
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
위 에러를 해결해보자
상황
dependencies {
...
implementation 'org.projectlombok:lombok'
}
해결
dependencies {
...
implementation 'org.projectlombok:lombok:1.18.22'
}
이렇게 버전을 추가해주면 해결된다.
참고로 나의 gradle 버전은 7.0.2 이다.
gradle 버전은 gradle/wrapper/gradle-wrapper.properties 파일에서 distributionUrl 에서 확인할 수 있다.
'Spring' 카테고리의 다른 글
org.apache.ibatis.executor.ExecutorException : No constructor found in ~ 에러 해결 (0) | 2023.09.04 |
---|---|
assertThat() import가 안 될 때 해결 (0) | 2023.08.19 |
Spring에서 Feign 사용하기 (0) | 2023.07.31 |
JPA JPQL 파라미터 객체(Object)로 한 번에 넘기기 (0) | 2023.07.26 |
JPA ConverterNotFoundException: No converter found capable of converting from type 에러 해결 (0) | 2023.07.26 |