This is an automated email from the ASF dual-hosted git repository. lhotari pushed a commit to branch branch-4.1 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit ebe78b88ec4d255453a1293573fa02f2784e54af Author: Lari Hotari <[email protected]> AuthorDate: Wed Dec 17 05:16:07 2025 +0200 [fix][build] Activate jdk21 and jdk24 profiles on Java 25 (#25084) (cherry picked from commit 611a3a43a6cd03df0569af9075eb0c2cf7da3858) --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index cd580b3e3db..75a0eebe38c 100644 --- a/pom.xml +++ b/pom.xml @@ -3000,7 +3000,7 @@ flexible messaging model and an intuitive client API.</description> <profile> <id>jdk21</id> <activation> - <jdk>21</jdk> + <jdk>[21,)</jdk> </activation> <properties> <!-- nifi-nar-maven-plugin >= 2.0.0 require Java 21+ --> @@ -3040,7 +3040,7 @@ flexible messaging model and an intuitive client API.</description> <profile> <id>jdk24</id> <activation> - <jdk>24</jdk> + <jdk>[24,)</jdk> </activation> <properties> <!-- JDK 24+ specific arguments -->
