반응형
🚨 build 시 발생한 에러 메시지
demo:main: Could not find org.thymeleaf.extras:thymeleaf-extras-springsecurity5:.
Required by:
project :
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
❓에러 발생 이유
해라이브러리의 버전을 명시해 주지 않아서 build가 실패하며 발생한 에러 메시지입니다.
✅ 해결 방법
라이브러리의 버전을 명시해 주면 정상적으로 build가 진행됩니다.
아래 수정된 build.gradle를 참고해주세요.
예시 build.gradle
이전 build.gradle
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
수정된 build.gradle
// 라이브러리의 버전 명시
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5:3.0.4.RELEASE'
반응형
댓글