This is an automated email from the ASF dual-hosted git repository.
stoty pushed a commit to branch 5.2
in repository https://gitbox.apache.org/repos/asf/phoenix.git
The following commit(s) were added to refs/heads/5.2 by this push:
new 1836233e27 PHOENIX-7539 Update default HBase 2.5 version to 2.5.11
(#2086)
1836233e27 is described below
commit 1836233e272ee86085a12581a2d8617af8586d3f
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 49543b4cba..810b498caf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -85,7 +85,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>
@@ -737,6 +738,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>
@@ -757,6 +763,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>
@@ -787,6 +798,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>
@@ -812,6 +828,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>
@@ -1907,7 +1928,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>
@@ -1916,7 +1937,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>
@@ -1938,7 +1958,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>
@@ -1948,10 +1968,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>