[IntelliJ] dependency 추가 오류 해결 방법
2023. 12. 23. 13:28ㆍ오류 발생+해결
반응형
🔴 오류 : Could not find org.thymeleaf.extras:thymeleaf-extras-springsecurity5
- 프로젝트를 빌드하거나 의존성을 관리하는 과정에서 Thymeleaf Spring Security 5 확장 모듈을 찾을 수 없다는 오류
- 해결방법 :
사용하려는 Thymeleaf Spring Security 5 확장 모듈의 최신 버전을 확인하고 의존성에 정확한 버전 번호를 명시
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5:3.0.4.RELEASE'
🔴 오류 : pratice:test: Could not find org.thymeleaf.extras:thymeleaf-extras-java8time
-
Thymeleaf Java 8 Time 모듈에 대한 의존성을 찾을 수 없다는 오류
- 해결방법
사용하려는 Thymeleaf Java 8 Time 모듈의 최신 버전을 확인하고 의존성에 정확한 버전 번호를 명시
- 코드 참고 URL : thymeleaf-extras-java8time
implementation group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-java8time', version: '3.0.4.RELEASE'
🟢 문제 해결 완료
반응형