Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
Update dependencies to the latest compatible versions
Browse files Browse the repository at this point in the history
ANTLR >4.10 requires a newer version of Java than 8.
  • Loading branch information
iconara committed Oct 24, 2023
1 parent 6c0d738 commit 01b473c
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
4 changes: 4 additions & 0 deletions jmespath-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
<version>0.5.2-SNAPSHOT</version>
</parent>

<properties>
<antlr.version>4.9.3</antlr.version>
</properties>

<dependencies>
<dependency>
<groupId>org.antlr</groupId>
Expand Down
4 changes: 4 additions & 0 deletions jmespath-gson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
<version>0.5.2-SNAPSHOT</version>
</parent>

<properties>
<gson.version>2.10.1</gson.version>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
4 changes: 4 additions & 0 deletions jmespath-jackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
<version>0.5.2-SNAPSHOT</version>
</parent>

<properties>
<jackson.version>2.15.3</jackson.version>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
4 changes: 4 additions & 0 deletions jmespath-jakarta-jsonp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
<version>0.5.2-SNAPSHOT</version>
</parent>

<properties>
<jakarta.jsonp.version>1.1.6</jakarta.jsonp.version>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
4 changes: 4 additions & 0 deletions jmespath-vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
<version>0.5.2-SNAPSHOT</version>
</parent>

<properties>
<vertx.version>4.4.6</vertx.version>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
7 changes: 1 addition & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,8 @@
<url>https://github.com/burtcorp/jmespath-java</url>

<properties>
<junit.version>4.13.1</junit.version>
<junit.version>4.13.2</junit.version>
<hamcrest.version>1.3</hamcrest.version>
<jackson.version>2.9.9</jackson.version>
<jakarta.jsonp.version>1.1.6</jakarta.jsonp.version>
<gson.version>2.8.5</gson.version>
<antlr.version>4.7.2</antlr.version>
<vertx.version>3.7.1</vertx.version>
<encoding>UTF-8</encoding>
</properties>

Expand Down

0 comments on commit 01b473c

Please sign in to comment.