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-connectors.git


The following commit(s) were added to refs/heads/master by this push:
     new 61a8c3d  PHOENIX-7594 Use a single commons-lang3 version in connectors 
(#158)
61a8c3d is described below

commit 61a8c3dafe199ae59b498b4ddd223ec065098721
Author: Istvan Toth <[email protected]>
AuthorDate: Tue Apr 29 10:17:42 2025 +0200

    PHOENIX-7594 Use a single commons-lang3 version in connectors (#158)
---
 phoenix5-hive/pom.xml  | 2 --
 phoenix5-hive4/pom.xml | 2 --
 pom.xml                | 6 ++++++
 3 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/phoenix5-hive/pom.xml b/phoenix5-hive/pom.xml
index 18844c2..8abea8c 100644
--- a/phoenix5-hive/pom.xml
+++ b/phoenix5-hive/pom.xml
@@ -37,7 +37,6 @@
     <top.dir>${project.basedir}/..</top.dir>
     <test.tmp.dir>${project.build.directory}/tmp</test.tmp.dir>
     <tez.version>0.9.1</tez.version>
-    <commons-lang3.version>3.17.0</commons-lang3.version>
     <calcite.version>1.16.0</calcite.version>
     <hive.version>${hive3.version}</hive.version>
   </properties>
@@ -202,7 +201,6 @@
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-lang3</artifactId>
-      <version>${commons-lang3.version}</version>
     </dependency>
 
     <!-- Hive test dependencies -->
diff --git a/phoenix5-hive4/pom.xml b/phoenix5-hive4/pom.xml
index bfa2734..a59cc22 100644
--- a/phoenix5-hive4/pom.xml
+++ b/phoenix5-hive4/pom.xml
@@ -39,7 +39,6 @@
     <hive.version>${hive4.version}</hive.version>
     <hive-storage.version>${hive.version}</hive-storage.version>
     <tez.version>0.10.3</tez.version>
-    <commons-lang3.version>3.17.0</commons-lang3.version>
     <calcite.version>1.25.0</calcite.version>
     <guava.version>33.2.1-jre</guava.version>
   </properties>
@@ -228,7 +227,6 @@
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-lang3</artifactId>
-      <version>${commons-lang3.version}</version>
     </dependency>
 
     <!-- Hive test dependencies -->
diff --git a/pom.xml b/pom.xml
index 15ca465..acb45f1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -134,6 +134,7 @@
     <jodatime.version>2.10.5</jodatime.version>
     <commons-cli.version>1.4</commons-cli.version>
     <commons-compress.version>1.26.0</commons-compress.version>
+    <commons-lang3.version>3.17.0</commons-lang3.version>
     <!-- For hive -->
     <commons-io.version>2.11.0</commons-io.version>
 
@@ -955,6 +956,11 @@
         <artifactId>disruptor</artifactId>
         <version>${disruptor.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-lang3</artifactId>
+        <version>${commons-lang3.version}</version>
+      </dependency>
     </dependencies>
   </dependencyManagement>
 

Reply via email to