This is an automated email from the ASF dual-hosted git repository.
apupier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 44b95bbbfb80 Fix JenkinsFile with JDK 25 due to JSpcify Nullable
compilation error
44b95bbbfb80 is described below
commit 44b95bbbfb808505306cc15cfec97f155a14eab9
Author: Aurélien Pupier <[email protected]>
AuthorDate: Tue Jun 9 09:07:47 2026 +0200
Fix JenkinsFile with JDK 25 due to JSpcify Nullable compilation error
same fix than
https://github.com/apache/camel/commit/8ae3d45d36df7b6fe785ffdf0d1070427dd5db31
Signed-off-by: Aurélien Pupier <[email protected]>
---
Jenkinsfile.deploy | 2 +-
Jenkinsfile.jbangtest | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile.deploy b/Jenkinsfile.deploy
index be08220b7e40..346c741d25e4 100644
--- a/Jenkinsfile.deploy
+++ b/Jenkinsfile.deploy
@@ -17,7 +17,7 @@
def AGENT_LABEL = env.AGENT_LABEL ?: 'ubuntu'
def JDK_NAME = env.JDK_NAME ?: 'jdk_25_latest'
-def MAVEN_PARAMS = "-U -B -e -fae -V -Dnoassembly -Dmaven.compiler.fork=true "
+def MAVEN_PARAMS = "-U -B -e -fae -V -Dnoassembly "
pipeline {
diff --git a/Jenkinsfile.jbangtest b/Jenkinsfile.jbangtest
index fea264de5721..73a5f81f43c9 100644
--- a/Jenkinsfile.jbangtest
+++ b/Jenkinsfile.jbangtest
@@ -17,7 +17,7 @@
def AGENT_LABEL = env.AGENT_LABEL ?: 'ubuntu'
def JDK_NAME = env.JDK_NAME ?: 'jdk_25_latest'
-def MAVEN_PARAMS = "-U -B -e -fae -V -Dnoassembly -Dmaven.compiler.fork=true "
+def MAVEN_PARAMS = "-U -B -e -fae -V -Dnoassembly "
pipeline {