Skip to content

Commit 786b5af

Browse files
authored
FMWK-138: Prepare 2.2.0 & Bump dependencies (#137)
* Bump dependencies (FMWK-138): 1. maven-surefire-plugin from 3.0.0-M7 to 3.0.0-M8. 2. aerospike-client from 6.1.2 to 6.1.8. 3. jackson-dataformat-yaml from 2.13.4 to 2.14.2. 4. reactor-test from 3.4.23 to 3.5.2. 5. junit-jupiter from 5.9.1 to 5.9.2. * Set version to 2.2.0. * Unify Object Mapper versions compatibility table.
1 parent 2d09e74 commit 786b5af

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ The documentation for this project can be found on [javadoc.io](https://www.java
4444
# Compatibility with Aerospike Clients
4545

4646
| Java Object Mapper Version | Aerospike Client | Aerospike Reactor Client
47-
| :----------- | :----------- | :-----------
48-
| 2.1.x | 6.1.x | 6.1.x
49-
| 2.0.x | 5.1.x | 5.1.x
50-
| 1.2.x, 1.3.x, 1.4.x | 5.1.x | 5.0.x
51-
| 1.1.x | 5.0.x |
47+
|:---------------------------| :----------- | :-----------
48+
| 2.1.x, 2.2.x | 6.1.x | 6.1.x
49+
| 2.0.x | 5.1.x | 5.1.x
50+
| 1.2.x, 1.3.x, 1.4.x | 5.1.x | 5.0.x
51+
| 1.1.x | 5.0.x |
5252

5353
# Installing the Mapper
5454
The easiest way to use the mapper is through Maven or Gradle. For Maven, pull it in from Maven Central:
@@ -57,13 +57,13 @@ The easiest way to use the mapper is through Maven or Gradle. For Maven, pull it
5757
<dependency>
5858
<groupId>com.aerospike</groupId>
5959
<artifactId>java-object-mapper</artifactId>
60-
<version>2.1.0</version>
60+
<version>2.2.0</version>
6161
</dependency>
6262
```
6363
For Gradle, you can use
6464
```
6565
// https://mvnrepository.com/artifact/com.aerospike/java-object-mapper
66-
implementation group: 'com.aerospike', name: 'java-object-mapper', version: '2.1.0'
66+
implementation group: 'com.aerospike', name: 'java-object-mapper', version: '2.2.0'
6767
```
6868

6969
# Motivation and a simple example

pom.xml

+6-6
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.1.0</version>
8+
<version>2.2.0</version>
99
<packaging>jar</packaging>
1010

1111
<name>Aerospike Object Mapper</name>
@@ -26,15 +26,15 @@
2626
<maven.javadoc.plugin.version>3.3.0</maven.javadoc.plugin.version>
2727
<maven.gpg.plugin.version>1.6</maven.gpg.plugin.version>
2828
<maven.compiler.plugin.version>3.10.1</maven.compiler.plugin.version>
29-
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
29+
<maven-surefire-plugin.version>3.0.0-M8</maven-surefire-plugin.version>
3030
<javax.validation-api.version>2.0.1.Final</javax.validation-api.version>
31-
<aerospike-client.version>6.1.2</aerospike-client.version>
31+
<aerospike-client.version>6.1.6</aerospike-client.version>
3232
<aerospike-reactor.version>6.1.2</aerospike-reactor.version>
3333
<commons-lang3.version>3.12.0</commons-lang3.version>
34-
<jackson-dataformat-yaml.version>2.13.4</jackson-dataformat-yaml.version>
34+
<jackson-dataformat-yaml.version>2.14.2</jackson-dataformat-yaml.version>
3535
<lombok.version>1.18.24</lombok.version>
36-
<reactor-test.version>3.4.23</reactor-test.version>
37-
<junit-jupiter.version>5.9.1</junit-jupiter.version>
36+
<reactor-test.version>3.5.2</reactor-test.version>
37+
<junit-jupiter.version>5.9.2</junit-jupiter.version>
3838
</properties>
3939

4040
<licenses>

0 commit comments

Comments
 (0)