Skip to content

Commit 258c061

Browse files
committed
Properly test against JDK 21.
See #1813
1 parent 12c50a9 commit 258c061

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
<springdata.commons>3.2.0-SNAPSHOT</springdata.commons>
2424
<java-module-name>spring.data.couchbase</java-module-name>
2525
<hibernate.validator>7.0.1.Final</hibernate.validator>
26-
<apt>1.1.3</apt>
27-
<querydsl>5.0.0</querydsl>
2826
<mysema.querydsl>3.7.4</mysema.querydsl>
2927
<couchbase.encryption>3.1.0</couchbase.encryption>
3028
<jodatime>2.10.13</jodatime>
@@ -311,7 +309,9 @@
311309
</goals>
312310
<configuration>
313311
<outputDirectory>target/generated-test-sources</outputDirectory>
314-
<processor>org.springframework.data.couchbase.repository.support.CouchbaseAnnotationProcessor</processor>
312+
<processor>
313+
org.springframework.data.couchbase.repository.support.CouchbaseAnnotationProcessor
314+
</processor>
315315
</configuration>
316316
</execution>
317317
</executions>

src/test/java/org/springframework/data/couchbase/repository/query/ReactiveCouchbaseRepositoryQueryCollectionIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import org.springframework.data.couchbase.core.CouchbaseTemplate;
3131
import org.springframework.data.couchbase.core.ReactiveCouchbaseTemplate;
3232
import org.springframework.data.couchbase.domain.Airport;
33-
import org.springframework.data.couchbase.domain.ConfigScoped;;
33+
import org.springframework.data.couchbase.domain.ConfigScoped;
3434
import org.springframework.data.couchbase.domain.ReactiveAirportRepository;
3535
import org.springframework.data.couchbase.domain.ReactiveAirportRepositoryAnnotated;
3636
import org.springframework.data.couchbase.domain.ReactiveUserColRepository;

0 commit comments

Comments
 (0)