File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 1+ import org.gradle.kotlin.dsl.annotationProcessor
2+ import org.gradle.kotlin.dsl.testAnnotationProcessor
3+
14plugins {
25 java
36 id(" org.springframework.boot" ) version " 3.5.5"
@@ -43,6 +46,14 @@ dependencies {
4346 testImplementation(" org.springframework.boot:spring-boot-starter-test" )
4447 testImplementation(" org.springframework.security:spring-security-test" )
4548 testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
49+
50+
51+ // QueryDSL
52+ implementation(" io.github.openfeign.querydsl:querydsl-jpa:7.0" )
53+ annotationProcessor(" io.github.openfeign.querydsl:querydsl-apt:7.0:jpa" )
54+ annotationProcessor(" jakarta.persistence:jakarta.persistence-api" )
55+ testAnnotationProcessor(" io.github.openfeign.querydsl:querydsl-apt:7.0:jpa" )
56+ testAnnotationProcessor(" jakarta.persistence:jakarta.persistence-api" )
4657}
4758
4859tasks.withType<Test > {
You can’t perform that action at this time.
0 commit comments