This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/master by this push:
     new cef55344b1 PHOENIX-7337 Centralize and upgrade 
com.jayway.jsonpath:json-path version from 2.6.0 to 2.9.0
cef55344b1 is described below

commit cef55344b1a1cb869ccf391905e3d9145eb62093
Author: Istvan Toth <st...@apache.org>
AuthorDate: Wed Jun 19 14:18:02 2024 +0200

    PHOENIX-7337 Centralize and upgrade com.jayway.jsonpath:json-path version 
from 2.6.0 to 2.9.0
    
    also centralize bson version
---
 phoenix-core-client/pom.xml |  2 --
 phoenix-core/pom.xml        |  2 --
 pom.xml                     | 13 +++++++++++++
 3 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/phoenix-core-client/pom.xml b/phoenix-core-client/pom.xml
index b926a0d302..5cdedb4bdf 100644
--- a/phoenix-core-client/pom.xml
+++ b/phoenix-core-client/pom.xml
@@ -294,14 +294,12 @@
     <dependency>
       <groupId>com.jayway.jsonpath</groupId>
       <artifactId>json-path</artifactId>
-      <version>2.6.0</version>
     </dependency>
 
     <!-- https://mvnrepository.com/artifact/org.mongodb/bson -->
     <dependency>
       <groupId>org.mongodb</groupId>
       <artifactId>bson</artifactId>
-      <version>4.4.0</version>
     </dependency>
 
     <!-- Transaction dependencies -->
diff --git a/phoenix-core/pom.xml b/phoenix-core/pom.xml
index 59a508e4da..12d7ad250d 100644
--- a/phoenix-core/pom.xml
+++ b/phoenix-core/pom.xml
@@ -244,14 +244,12 @@
         <dependency>
             <groupId>com.jayway.jsonpath</groupId>
             <artifactId>json-path</artifactId>
-            <version>2.6.0</version>
         </dependency>
 
         <!-- https://mvnrepository.com/artifact/org.mongodb/bson -->
         <dependency>
             <groupId>org.mongodb</groupId>
             <artifactId>bson</artifactId>
-            <version>4.4.0</version>
         </dependency>
 
         <!-- Omid dependencies -->
diff --git a/pom.xml b/pom.xml
index 7c5b0501e7..dc7e8bfb13 100644
--- a/pom.xml
+++ b/pom.xml
@@ -135,6 +135,8 @@
     <jcodings.version>1.0.55</jcodings.version>
     <jetty.version>9.4.53.v20231009</jetty.version>
     <javax.servlet-api.version>3.1.0</javax.servlet-api.version>
+    <json-path.version>2.9.0</json-path.version>
+    <bson.version>4.4.0</bson.version>
     <!-- Test Dependencies -->
     <mockito.version>4.11.0</mockito.version>
     <junit.version>4.13.1</junit.version>
@@ -1725,6 +1727,17 @@
         <artifactId>HdrHistogram</artifactId>
         <version>${hdrhistogram.version}</version>
       </dependency>
+      <dependency>
+        <groupId>com.jayway.jsonpath</groupId>
+        <artifactId>json-path</artifactId>
+        <version>${json-path.version}</version>
+      </dependency>
+      <!-- https://mvnrepository.com/artifact/org.mongodb/bson -->
+      <dependency>
+        <groupId>org.mongodb</groupId>
+        <artifactId>bson</artifactId>
+        <version>${bson.version}</version>
+      </dependency>
 
       <!-- Other test dependencies -->
       <dependency>

Reply via email to