Skip to content

Commit 195c718

Browse files
authored
FMWK-661 Update dependencies and set version to 2.5.2 (#172)
1 parent 3fc38a6 commit 195c718

File tree

2 files changed

+22
-18
lines changed

2 files changed

+22
-18
lines changed

README.md

+15-11
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,20 @@ The documentation for this project can be found on [javadoc.io](https://www.java
4242
12. [Scans](#Scans)
4343
13. [Queries](#Queries)
4444

45-
# Compatibility with Aerospike Clients
45+
<details>
46+
<summary>Compatibility with Aerospike Clients</summary>
4647

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>
5559

5660
# Installing the Mapper
5761
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
6064
<dependency>
6165
<groupId>com.aerospike</groupId>
6266
<artifactId>java-object-mapper</artifactId>
63-
<version>2.5.1</version>
67+
<version>2.5.2</version>
6468
</dependency>
6569
```
6670
For Gradle, you can use
6771
```
6872
// 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'
7074
```
7175

7276
# Motivation and a simple example

pom.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.aerospike</groupId>
77
<artifactId>java-object-mapper</artifactId>
8-
<version>2.5.1</version>
8+
<version>2.5.2</version>
99
<packaging>jar</packaging>
1010

1111
<name>Aerospike Object Mapper</name>
@@ -28,13 +28,13 @@
2828
<maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version>
2929
<maven-surefire-plugin.version>3.3.0</maven-surefire-plugin.version>
3030
<javax.validation-api.version>2.0.1.Final</javax.validation-api.version>
31-
<aerospike-client-jdk8.version>8.1.2</aerospike-client-jdk8.version>
32-
<aerospike-reactor.version>8.1.2</aerospike-reactor.version>
31+
<aerospike-client-jdk8.version>9.0.3</aerospike-client-jdk8.version>
32+
<aerospike-reactor.version>9.0.2</aerospike-reactor.version>
3333
<commons-lang3.version>3.14.0</commons-lang3.version>
34-
<jackson-dataformat-yaml.version>2.17.2</jackson-dataformat-yaml.version>
35-
<lombok.version>1.18.34</lombok.version>
36-
<reactor-test.version>3.6.7</reactor-test.version>
37-
<junit-jupiter.version>5.10.3</junit-jupiter.version>
34+
<jackson-dataformat-yaml.version>2.18.2</jackson-dataformat-yaml.version>
35+
<lombok.version>1.18.36</lombok.version>
36+
<reactor-test.version>3.7.2</reactor-test.version>
37+
<junit-jupiter.version>5.11.4</junit-jupiter.version>
3838
</properties>
3939

4040
<licenses>

0 commit comments

Comments
 (0)