@@ -42,16 +42,20 @@ The documentation for this project can be found on [javadoc.io](https://www.java
42
42
12 . [ Scans] ( #Scans )
43
43
13 . [ Queries] ( #Queries )
44
44
45
- # Compatibility with Aerospike Clients
45
+ <details >
46
+ <summary >Compatibility with Aerospike Clients</summary >
46
47
47
- | Java Object Mapper Version | Aerospike Client | Aerospike Reactor Client
48
- |:---------------------------|:-----------------| :-----------
49
- | 2.5.x | 8.1.x (jdk8) | 8.1.x
50
- | 2.4.x | 8.1.x (jdk8) | 7.1.x
51
- | 2.1.x, 2.2.x, 2.3.x | 6.1.x | 6.1.x
52
- | 2.0.x | 5.1.x | 5.1.x
53
- | 1.2.x, 1.3.x, 1.4.x | 5.1.x | 5.0.x
54
- | 1.1.x | 5.0.x |
48
+ | Java Object Mapper Version | Aerospike Client | Aerospike Reactor Client |
49
+ | ----------------------------| ------------------| --------------------------|
50
+ | 2.5.2 | 9.0.x (jdk8) | 9.0.x |
51
+ | 2.5.0, 2.5.1 | 8.1.x (jdk8) | 8.1.x |
52
+ | 2.4.x | 8.1.x (jdk8) | 7.1.x |
53
+ | 2.1.x, 2.2.x, 2.3.x | 6.1.x | 6.1.x |
54
+ | 2.0.x | 5.1.x | 5.1.x |
55
+ | 1.2.x, 1.3.x, 1.4.x | 5.1.x | 5.0.x |
56
+ | 1.1.x | 5.0.x | |
57
+
58
+ </details >
55
59
56
60
# Installing the Mapper
57
61
The easiest way to use the mapper is through Maven or Gradle. For Maven, pull it in from Maven Central:
@@ -60,13 +64,13 @@ The easiest way to use the mapper is through Maven or Gradle. For Maven, pull it
60
64
<dependency>
61
65
<groupId>com.aerospike</groupId>
62
66
<artifactId>java-object-mapper</artifactId>
63
- <version>2.5.1 </version>
67
+ <version>2.5.2 </version>
64
68
</dependency>
65
69
```
66
70
For Gradle, you can use
67
71
```
68
72
// https://mvnrepository.com/artifact/com.aerospike/java-object-mapper
69
- implementation group: 'com.aerospike', name: 'java-object-mapper', version: '2.5.1 '
73
+ implementation group: 'com.aerospike', name: 'java-object-mapper', version: '2.5.2 '
70
74
```
71
75
72
76
# Motivation and a simple example
0 commit comments