Skip to content

Commit f2d69c8

Browse files
authored
FMWK-791 Update dependencies and set version to 2.6.0 (#184)
1 parent 0f4f717 commit f2d69c8

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
# Aerospike cluster for integration tests (https://github.com/reugn/github-action-aerospike)
2626
- name: Set up Aerospike Database
2727
uses: reugn/github-action-aerospike@v1
28+
with:
29+
server-version: 7.2.0.6
2830

2931
# See: https://github.com/actions/cache/blob/master/examples.md#java---maven
3032
- name: Cache local Maven repository

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The documentation for this project can be found on [javadoc.io](https://www.java
4747

4848
| Java Object Mapper Version | Aerospike Client | Aerospike Reactor Client |
4949
|----------------------------|------------------|--------------------------|
50-
| 2.5.2 | 9.0.x (jdk8) | 9.0.x |
50+
| 2.5.2, 2.6.x | 9.0.x (jdk8) | 9.0.x |
5151
| 2.5.0, 2.5.1 | 8.1.x (jdk8) | 8.1.x |
5252
| 2.4.x | 8.1.x (jdk8) | 7.1.x |
5353
| 2.1.x, 2.2.x, 2.3.x | 6.1.x | 6.1.x |
@@ -64,13 +64,13 @@ The easiest way to use the mapper is through Maven or Gradle. For Maven, pull it
6464
<dependency>
6565
<groupId>com.aerospike</groupId>
6666
<artifactId>java-object-mapper</artifactId>
67-
<version>2.5.2</version>
67+
<version>2.6.0</version>
6868
</dependency>
6969
```
7070
For Gradle, you can use
7171
```
7272
// https://mvnrepository.com/artifact/com.aerospike/java-object-mapper
73-
implementation group: 'com.aerospike', name: 'java-object-mapper', version: '2.5.2'
73+
implementation group: 'com.aerospike', name: 'java-object-mapper', version: '2.6.0'
7474
```
7575

7676
# Motivation and a simple example

pom.xml

Lines changed: 16 additions & 6 deletions
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.2</version>
8+
<version>2.6.0</version>
99
<packaging>jar</packaging>
1010

1111
<name>Aerospike Object Mapper</name>
@@ -27,13 +27,14 @@
2727
<maven.gpg.plugin.version>1.6</maven.gpg.plugin.version>
2828
<maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version>
2929
<maven-surefire-plugin.version>3.3.0</maven-surefire-plugin.version>
30+
<maven-central-publishing-plugin.version>0.8.0</maven-central-publishing-plugin.version>
3031
<javax.validation-api.version>2.0.1.Final</javax.validation-api.version>
31-
<aerospike-client-jdk8.version>9.0.3</aerospike-client-jdk8.version>
32-
<aerospike-reactor.version>9.0.2</aerospike-reactor.version>
32+
<aerospike-client-jdk8.version>9.0.5</aerospike-client-jdk8.version>
33+
<aerospike-reactor.version>9.0.5</aerospike-reactor.version>
3334
<commons-lang3.version>3.14.0</commons-lang3.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>
35+
<jackson-dataformat-yaml.version>2.19.1</jackson-dataformat-yaml.version>
36+
<lombok.version>1.18.38</lombok.version>
37+
<reactor-test.version>3.7.7</reactor-test.version>
3738
<junit-jupiter.version>5.11.4</junit-jupiter.version>
3839
</properties>
3940

@@ -194,6 +195,15 @@
194195
<artifactId>maven-surefire-plugin</artifactId>
195196
<version>${maven-surefire-plugin.version}</version>
196197
</plugin>
198+
<plugin>
199+
<groupId>org.sonatype.central</groupId>
200+
<artifactId>central-publishing-maven-plugin</artifactId>
201+
<version>${maven-central-publishing-plugin.version}</version>
202+
<extensions>true</extensions>
203+
<configuration>
204+
<publishingServerId>central</publishingServerId>
205+
</configuration>
206+
</plugin>
197207
</plugins>
198208
<resources>
199209
<resource>

0 commit comments

Comments
 (0)