Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FMWK-329 Upgrade dependencies #100

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
# Checkout repo using https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK 1.8
uses: actions/setup-java@v3
Expand All @@ -23,6 +23,8 @@ jobs:
# Aerospike cluster for integration tests (https://github.com/reugn/github-action-aerospike)
- name: Set up Aerospike Database
uses: reugn/github-action-aerospike@v1
with:
server-version: '6.4.0.13'

# See: https://github.com/actions/cache/blob/master/examples.md#java---maven
- name: Cache local Maven repository
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Add the Maven dependency:
<dependency>
<groupId>com.aerospike</groupId>
<artifactId>aerospike-document-api</artifactId>
<version>2.0.2</version>
<version>2.0.3</version>
</dependency>
```

Expand Down
20 changes: 13 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.aerospike</groupId>
<artifactId>aerospike-document-api</artifactId>
<version>2.0.2</version>
<version>2.0.3</version>

<name>Aerospike Document API</name>
<description>This project provides an API which allows Aerospike CDT (Collection Data Type) objects to be accessed
Expand All @@ -29,12 +29,13 @@
<maven.javadoc.plugin.version>3.3.0</maven.javadoc.plugin.version>
<maven.gpg.plugin.version>1.6</maven.gpg.plugin.version>
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
<jackson-databind.version>2.15.2</jackson-databind.version>
<aerospike-client.version>7.1.0</aerospike-client.version>
<json-path.version>2.7.0</json-path.version>
<lombok.version>1.18.28</lombok.version>
<junit-jupiter.version>5.10.0</junit-jupiter.version>
<mockito.version>4.9.0</mockito.version>
<jackson-databind.version>2.17.0</jackson-databind.version>
<aerospike-client.version>7.2.1</aerospike-client.version>
<json-path.version>2.9.0</json-path.version>
<json-smart.version>2.5.0</json-smart.version>
<lombok.version>1.18.30</lombok.version>
<junit-jupiter.version>5.10.2</junit-jupiter.version>
<mockito.version>4.11.0</mockito.version>
</properties>

<licenses>
Expand Down Expand Up @@ -88,6 +89,11 @@
<artifactId>json-path</artifactId>
<version>${json-path.version}</version>
</dependency>
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>${json-smart.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand Down
Loading