Skip to content

Commit

Permalink
feat - #174 Querydsl에 필요한 build.gradle 설정 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kseysh committed Jul 16, 2024
1 parent 3251a18 commit cbbffcb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,7 @@ application-prod.yml
### Test ###
data.sql

### Querydsl ###
**/generated/

# End of https://www.gitignore.io/api/java,macos,gradle,intellij
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ dependencies {
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.5'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.5'

// Querydsl
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
annotationProcessor "com.querydsl:querydsl-apt:${dependencyManagement.importedProperties['querydsl.version']}:jakarta"
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
annotationProcessor "jakarta.persistence:jakarta.persistence-api"

// Open Feign
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign:4.1.0'

Expand Down

0 comments on commit cbbffcb

Please sign in to comment.