|
23 | 23 | <springdata.commons>3.0.13-SNAPSHOT</springdata.commons>
|
24 | 24 | <java-module-name>spring.data.couchbase</java-module-name>
|
25 | 25 | <hibernate.validator>7.0.1.Final</hibernate.validator>
|
| 26 | + <apt>1.1.3</apt> |
| 27 | + <querydsl>5.0.0</querydsl> |
26 | 28 | <mysema.querydsl>3.7.4</mysema.querydsl>
|
27 | 29 | <couchbase.encryption>3.1.0</couchbase.encryption>
|
28 | 30 | <jodatime>2.10.13</jodatime>
|
|
247 | 249 |
|
248 | 250 | <build>
|
249 | 251 | <plugins>
|
250 |
| - <plugin> |
251 |
| - <groupId>org.apache.maven.plugins</groupId> |
252 |
| - <artifactId>maven-compiler-plugin</artifactId> |
253 |
| - <dependencies> |
254 |
| - <dependency> |
255 |
| - <groupId>com.querydsl</groupId> |
256 |
| - <artifactId>querydsl-apt</artifactId> |
257 |
| - <version>${querydsl}</version> |
258 |
| - </dependency> |
259 |
| - </dependencies> |
260 |
| - <configuration> |
261 |
| - <proc>none</proc> |
262 |
| - </configuration> |
263 |
| - <executions> |
264 |
| - <execution> |
265 |
| - <id>test-annotation-processing</id> |
266 |
| - <phase>generate-test-sources</phase> |
267 |
| - <goals> |
268 |
| - <goal>testCompile</goal> |
269 |
| - </goals> |
270 |
| - <configuration> |
271 |
| - <proc>only</proc> |
272 |
| - <annotationProcessors> |
273 |
| - <annotationProcessor>org.springframework.data.couchbase.repository.support.CouchbaseAnnotationProcessor</annotationProcessor> |
274 |
| - </annotationProcessors> |
275 |
| - <generatedTestSourcesDirectory>target/generated-test-sources</generatedTestSourcesDirectory> |
276 |
| - </configuration> |
277 |
| - </execution> |
278 |
| - </executions> |
279 |
| - </plugin> |
280 |
| - |
281 | 252 | <plugin>
|
282 | 253 | <groupId>org.apache.maven.plugins</groupId>
|
283 | 254 | <artifactId>maven-surefire-plugin</artifactId>
|
|
321 | 292 | <groupId>org.asciidoctor</groupId>
|
322 | 293 | <artifactId>asciidoctor-maven-plugin</artifactId>
|
323 | 294 | </plugin>
|
| 295 | + <plugin> |
| 296 | + <groupId>com.mysema.maven</groupId> |
| 297 | + <artifactId>apt-maven-plugin</artifactId> |
| 298 | + <version>${apt}</version> |
| 299 | + <dependencies> |
| 300 | + <dependency> |
| 301 | + <groupId>com.querydsl</groupId> |
| 302 | + <artifactId>querydsl-apt</artifactId> |
| 303 | + <version>${querydsl}</version> |
| 304 | + </dependency> |
| 305 | + </dependencies> |
| 306 | + <executions> |
| 307 | + <execution> |
| 308 | + <phase>generate-test-sources</phase> |
| 309 | + <goals> |
| 310 | + <goal>test-process</goal> |
| 311 | + </goals> |
| 312 | + <configuration> |
| 313 | + <outputDirectory>target/generated-test-sources</outputDirectory> |
| 314 | + <processor>org.springframework.data.couchbase.repository.support.CouchbaseAnnotationProcessor</processor> |
| 315 | + </configuration> |
| 316 | + </execution> |
| 317 | + </executions> |
| 318 | + </plugin> |
324 | 319 | </plugins>
|
325 | 320 | </build>
|
326 | 321 |
|
|
0 commit comments