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