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 ec0ca2643a PHOENIX-7539 Update default HBase 2.5 version to 2.5.11 
(#2086)
ec0ca2643a is described below

commit ec0ca2643a12fe441031d50f8a5fe3c6149dcb6c
Author: Istvan Toth <[email protected]>
AuthorDate: Fri Mar 14 06:49:19 2025 +0100

    PHOENIX-7539 Update default HBase 2.5 version to 2.5.11 (#2086)
---
 pom.xml | 45 ++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 40 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index 5e8f56e31e..cd364c1f47 100644
--- a/pom.xml
+++ b/pom.xml
@@ -78,7 +78,8 @@
     <!-- The default hbase versions to build with (override with 
hbase.version) -->
     <hbase-2.4.runtime.version>2.4.18</hbase-2.4.runtime.version>
     <hbase-2.5.0.runtime.version>2.5.3-hadoop3</hbase-2.5.0.runtime.version>
-    <hbase-2.5.runtime.version>2.5.10-hadoop3</hbase-2.5.runtime.version>
+    <hbase-2.5.4.runtime.version>2.5.10-hadoop3</hbase-2.5.4.runtime.version>
+    <hbase-2.5.runtime.version>2.5.11-hadoop3</hbase-2.5.runtime.version>
     <hbase-2.6.0.runtime.version>2.6.1-hadoop3</hbase-2.6.0.runtime.version>
     <hbase-2.6.runtime.version>2.6.2-hadoop3</hbase-2.6.runtime.version>
 
@@ -733,6 +734,11 @@
         <artifactId>phoenix-client-embedded-hbase-2.5.0</artifactId>
         <version>${project.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.phoenix</groupId>
+        <artifactId>phoenix-client-embedded-hbase-2.5.4</artifactId>
+        <version>${project.version}</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.phoenix</groupId>
         <artifactId>phoenix-client-embedded-hbase-2.5</artifactId>
@@ -753,6 +759,11 @@
         <artifactId>phoenix-client-lite-hbase-2.4</artifactId>
         <version>${project.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.phoenix</groupId>
+        <artifactId>phoenix-client-lite-hbase-2.5.4</artifactId>
+        <version>${project.version}</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.phoenix</groupId>
         <artifactId>phoenix-client-lite-hbase-2.5.0</artifactId>
@@ -783,6 +794,11 @@
         <artifactId>phoenix-server-hbase-2.5.0</artifactId>
         <version>${project.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.phoenix</groupId>
+        <artifactId>phoenix-server-hbase-2.5.4</artifactId>
+        <version>${project.version}</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.phoenix</groupId>
         <artifactId>phoenix-server-hbase-2.5</artifactId>
@@ -808,6 +824,11 @@
         <artifactId>phoenix-mapreduce-byo-shaded-hbase-hbase-2.5.0</artifactId>
         <version>${project.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.phoenix</groupId>
+        <artifactId>phoenix-mapreduce-byo-shaded-hbase-hbase-2.5.4</artifactId>
+        <version>${project.version}</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.phoenix</groupId>
         <artifactId>phoenix-mapreduce-byo-shaded-hbase-hbase-2.5</artifactId>
@@ -1926,7 +1947,7 @@
     <profile>
       <!-- must be identical to phoenix-hbase-compat-2.5.4 profile -->
       <!-- This WILL work with the public HBase artifacts -->
-      <id>phoenix-hbase-compat-2.5.4-default</id>
+      <id>phoenix-hbase-compat-2.5.11-default</id>
       <activation>
         <property>
           <name>!hbase.profile</name>
@@ -1935,7 +1956,6 @@
       <properties>
         <hbase.profile>2.5</hbase.profile>
         <hbase.compat.version>2.5.4</hbase.compat.version>
-        <hadoop.version>3.3.6</hadoop.version>
         <hbase.version>${hbase-2.5.runtime.version}</hbase.version>
       </properties>
     </profile>
@@ -1957,7 +1977,7 @@
     </profile>
     <profile>
       <!-- This WILL work with the public -hadoop3 artifacts -->
-      <id>phoenix-hbase-compat-2.5.4</id>
+      <id>phoenix-hbase-compat-2.5.11</id>
       <activation>
         <property>
           <name>hbase.profile</name>
@@ -1967,10 +1987,25 @@
       <properties>
         <hbase.profile>2.5</hbase.profile>
         <hbase.compat.version>2.5.4</hbase.compat.version>
-        <hadoop.version>3.3.6</hadoop.version>
         <hbase.version>${hbase-2.5.runtime.version}</hbase.version>
       </properties>
     </profile>
+    <profile>
+      <!-- This WILL work with the public -hadoop3 artifacts -->
+      <id>phoenix-hbase-compat-2.5.4</id>
+      <activation>
+        <property>
+          <name>hbase.profile</name>
+          <value>2.5.4</value>
+        </property>
+      </activation>
+      <properties>
+        <hbase.profile>2.5</hbase.profile>
+        <hbase.compat.version>2.5.4</hbase.compat.version>
+        <hadoop.version>3.3.6</hadoop.version>
+        <hbase.version>${hbase-2.5.4.runtime.version}</hbase.version>
+      </properties>
+    </profile>
     <profile>
       <!-- This WILL work with the public -hadoop3 artifacts -->
       <id>phoenix-hbase-compat-2.5.0</id>

Reply via email to