Querydsl 설정 검증 중 querydsl.Tasks.other.compileQuerydsl 실행 불가
해결 방법
최신 스프링 부트에서는 build.gradle에 Querydsl 버전을 명시해야 한다.
(스프링 부트 2.6부터는 Querydsl 5.0을 사용)
dependencies{
//Querydsl 버전 명시 필요
implementation "com.querydsl:querydsl-jpa:${queryDslVersion}"
annotationProcessor "com.querydsl:querydsl-apt:${queryDslVersion}"
}
'ProblemSolving' 카테고리의 다른 글
| [SpringBoot] 프로젝트 생성 후 빌드 실패 (0) | 2023.01.20 |
|---|---|
| [IntelliJ] 메세지, 국제화 테스트 중 한글 깨짐 (0) | 2022.08.26 |
| [IntelliJ] Java file outside of source root (0) | 2022.08.26 |
| [Servlet] Error creating bean with name 'servletComponentRegisteringPostProcessor' (0) | 2022.08.01 |
| [Git] refusing to merge unrelated histories (0) | 2022.05.13 |