@@ -75,12 +75,9 @@ dependencies {
75
75
76
76
// Persistence Layer
77
77
implementation ' org.springframework.boot:spring-boot-starter-data-jpa'
78
- implementation ' org.springframework.boot:spring-boot-starter-data-mongodb'
79
78
implementation ' org.springframework.boot:spring-boot-starter-data-redis'
79
+ implementation ' io.hypersistence:hypersistence-utils-hibernate-63:3.7.4'
80
80
implementation " io.github.openfeign.querydsl:querydsl-jpa-spring:${ queryDslVersion} "
81
- implementation(" io.github.openfeign.querydsl:querydsl-mongodb:${ queryDslVersion} " ) {
82
- exclude group : ' org.mongodb' , module : ' mongo-java-driver'
83
- }
84
81
implementation " io.github.openfeign.querydsl:querydsl-collections:${ queryDslVersion} "
85
82
implementation ' com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.9.1'
86
83
implementation ' org.flywaydb:flyway-core'
@@ -137,8 +134,6 @@ dependencies {
137
134
annotationProcessor(
138
135
' org.springframework.boot:spring-boot-configuration-processor' ,
139
136
" io.github.openfeign.querydsl:querydsl-jpa-spring:${ queryDslVersion} " ,
140
- " io.github.openfeign.querydsl:querydsl-mongodb:${ queryDslVersion} " ,
141
- ' org.springframework.boot:spring-boot-starter-data-mongodb' ,
142
137
' org.projectlombok:lombok' ,
143
138
" org.mapstruct:mapstruct-processor:${ mapstructVersion} " ,
144
139
' org.projectlombok:lombok-mapstruct-binding:0.2.0'
@@ -171,16 +166,13 @@ dependencies {
171
166
testImplementation ' org.springframework.boot:spring-boot-testcontainers'
172
167
testImplementation ' org.testcontainers:junit-jupiter'
173
168
testImplementation ' org.testcontainers:postgresql'
174
- testImplementation ' org.testcontainers:mongodb'
175
169
testImplementation ' org.testcontainers:kafka'
176
170
testImplementation ' org.testcontainers:localstack'
177
171
testImplementation ' org.elasticmq:elasticmq-server_3:1.6.1'
178
172
179
173
testAnnotationProcessor(
180
174
' org.springframework.boot:spring-boot-configuration-processor' ,
181
175
" io.github.openfeign.querydsl:querydsl-jpa-spring:${ queryDslVersion} " ,
182
- " io.github.openfeign.querydsl:querydsl-mongodb:${ queryDslVersion} " ,
183
- ' org.springframework.boot:spring-boot-starter-data-mongodb' ,
184
176
' org.projectlombok:lombok' ,
185
177
" org.mapstruct:mapstruct-processor:${ mapstructVersion} " ,
186
178
' org.projectlombok:lombok-mapstruct-binding:0.2.0'
@@ -193,13 +185,6 @@ sourceSets {
193
185
}
194
186
195
187
tasks. withType(JavaCompile ). configureEach {
196
- options. compilerArgs + = [
197
- " -processor" , ' lombok.launch.AnnotationProcessorHider$AnnotationProcessor,' +
198
- ' org.springframework.data.mongodb.repository.support.MongoAnnotationProcessor,' +
199
- ' com.querydsl.apt.jpa.JPAAnnotationProcessor,' +
200
- ' org.mapstruct.ap.MappingProcessor,' +
201
- ' org.springframework.boot.configurationprocessor.ConfigurationMetadataAnnotationProcessor'
202
- ]
203
188
options. annotationProcessorGeneratedSourcesDirectory(file(generated))
204
189
}
205
190
0 commit comments