diff --git a/pom.xml b/pom.xml index 5e1deca0..c16820af 100644 --- a/pom.xml +++ b/pom.xml @@ -31,8 +31,10 @@ 4.1.2 3.3.0 1.6 - 8.1.2 - 8.1.2 + + + 7.2.1 + 7.1.0 8.1.2 3.6.1 3.1.6 @@ -193,10 +195,15 @@ ${springdata.spring-boot} compile + + + + + com.aerospike - aerospike-client-jdk8 - ${aerospike-client-jdk8} + aerospike-client + ${aerospike-client} com.aerospike @@ -252,9 +259,13 @@ org.springframework spring-tx + + + + com.aerospike - aerospike-client-jdk8 + aerospike-client com.aerospike diff --git a/src/test/java/org/springframework/data/aerospike/core/AerospikeTemplateSaveTests.java b/src/test/java/org/springframework/data/aerospike/core/AerospikeTemplateSaveTests.java index fca35c75..b774a2b5 100644 --- a/src/test/java/org/springframework/data/aerospike/core/AerospikeTemplateSaveTests.java +++ b/src/test/java/org/springframework/data/aerospike/core/AerospikeTemplateSaveTests.java @@ -403,7 +403,7 @@ public void shouldSaveAllVersionedDocumentsIfDuplicatesNotWithinOneBatch() { assertThat(newFirst.getVersion()).isSameAs(0); assertThat(newSecond.getVersion()).isSameAs(0); - template.saveAll(List.of(newFirst, newSecond)); + template.saveAll(List.of(newFirst, newSecond)); // OptimisticLockingFailure Failed to save the record with ID 'newId2' due to versions mismatch assertThat(newFirst.getVersion()).isSameAs(1); assertThat(newSecond.getVersion()).isSameAs(1);