문제상황
최근에 새로 시작한 프로젝트가 있어서 entity setting을 마치고 git push를 했는데...

ci가 실패하였다..😥
정확한 에러 메시지를 보기 위해 intelliJ를 키고 ./gradlew clean build를 해보니 다음의 에러 메시지가 출력되었다

구글링해보니 spring 3.0으로 넘어오면서 javax가 jakarta EE로 이름이 변경되어서,
기존 javax에서 몇 가지 설정을 추가해주면 된다.
implementation("com.querydsl:querydsl-jpa:5.0.0:jakarta")
implementation("com.querydsl:querydsl-core:5.0.0")
kapt("com.querydsl:querydsl-apt:5.0.0:jakarta")
kapt("com.querydsl:querydsl-kotlin-codegen:5.0.0")
다시 ./gradlew clean build 해보니 잘 되었다 !
'Trouble' 카테고리의 다른 글
Spring Batch Table 오류 (0) | 2023.02.09 |
---|---|
[Intellij] - Couldn't check commit: Kotlin resolution encountered a problem while analyzing KtNameReferenceExpression (0) | 2022.12.28 |