This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch karaf-4.4.x
in repository https://gitbox.apache.org/repos/asf/karaf.git
The following commit(s) were added to refs/heads/karaf-4.4.x by this push:
new e4977aebd0 Define the required java version range in karaf maven
plugins (#2220)
e4977aebd0 is described below
commit e4977aebd06045eb1fef5e23b6c7c7e4a9dcbdb6
Author: JB Onofré <[email protected]>
AuthorDate: Sat Jan 10 11:54:12 2026 +0100
Define the required java version range in karaf maven plugins (#2220)
---
tooling/karaf-maven-plugin/pom.xml | 6 +++++-
tooling/karaf-services-maven-plugin/pom.xml | 5 +++++
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/tooling/karaf-maven-plugin/pom.xml
b/tooling/karaf-maven-plugin/pom.xml
index 35b3ca004e..a8d541340c 100644
--- a/tooling/karaf-maven-plugin/pom.xml
+++ b/tooling/karaf-maven-plugin/pom.xml
@@ -356,8 +356,12 @@
</dependencies>
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
- <version>3.11.0</version>
+ <version>3.15.2</version>
+ <configuration>
+ <requiredJavaVersion>[11,)</requiredJavaVersion>
+ </configuration>
<executions>
<execution>
<id>default-descriptor</id>
diff --git a/tooling/karaf-services-maven-plugin/pom.xml
b/tooling/karaf-services-maven-plugin/pom.xml
index ac6e3cd98b..db8eca7070 100644
--- a/tooling/karaf-services-maven-plugin/pom.xml
+++ b/tooling/karaf-services-maven-plugin/pom.xml
@@ -144,7 +144,12 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
+ <version>3.15.2</version>
+ <configuration>
+ <requiredJavaVersion>[11,)</requiredJavaVersion>
+ </configuration>
<executions>
<execution>
<id>default-descriptor</id>