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 40ee9206c1 Set javase 11 by default in the karaf-maven-plugin (#2239)
(#2240)
40ee9206c1 is described below
commit 40ee9206c10559d2629b289493ebb852b4910e6f
Author: JB Onofré <[email protected]>
AuthorDate: Tue Jan 27 20:15:24 2026 +0100
Set javase 11 by default in the karaf-maven-plugin (#2239) (#2240)
---
.../src/main/java/org/apache/karaf/tooling/AssemblyMojo.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/AssemblyMojo.java
b/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/AssemblyMojo.java
index d7b106104c..f1824a3533 100644
---
a/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/AssemblyMojo.java
+++
b/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/AssemblyMojo.java
@@ -393,9 +393,9 @@ public class AssemblyMojo extends MojoSupport {
* <li><code>org.osgi.framework.system.packages</code></li>
* <li><code>org.osgi.framework.system.capabilities</code></li>
* </ul>
- * <p>Valid values are: 1.6, 1.7, 1.8, 9
+ * <p>Valid values are: 1.8, 11, 17, 22
*/
- @Parameter(defaultValue = "1.8")
+ @Parameter(defaultValue = "11")
protected String javase;
/**