From 769ef6d18c0eddb7a9c50eadd4476704522df5b7 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 29 Mar 2025 01:12:43 +0000 Subject: [PATCH 1/2] chore(pom): Use recommended core version 2.462.3, and Java 11. --- pom.xml | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/pom.xml b/pom.xml index fb2ab888..366375bc 100644 --- a/pom.xml +++ b/pom.xml @@ -3,12 +3,14 @@ org.jenkins-ci.plugins plugin - 4.40 + 4.88 - 2.332.2 + + 2.462 + ${jenkins.baseline}.3 999999-SNAPSHOT @@ -17,6 +19,17 @@ ClearCase UCM Plugin https://plugins.jenkins.io/clearcase-ucm-plugin/ hpi + + + + io.jenkins.tools.bom + bom-${jenkins.baseline}.x + 4228.v0a_71308d905b_ + pom + import + + + @@ -32,13 +45,6 @@ - - - MadsNielsen - man@praqma.net - - - @@ -83,7 +89,6 @@ commons-lang commons-lang - 2.6 com.fasterxml.jackson.core From 9b2d6f5991905a22169d8d4f9ef70c7eabd7c461 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 29 Mar 2025 22:50:14 +0100 Subject: [PATCH 2/2] chore(jenkins): Build with JDK11. --- Jenkinsfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 93665338..1a6a0126 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,3 +1,10 @@ -buildPlugin(useContainerAgent: true, configurations: [ -[platform: 'linux', jdk: '8'], +/* + * See the documentation for more options: + * https://github.com/jenkins-infra/pipeline-library/ + */ +buildPlugin( + forkCount: '1C', // run this number of tests in parallel for faster feedback. If the number terminates with a 'C', the value will be multiplied by the number of available CPU cores + useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests + configurations: [ + [platform: 'linux', jdk: 11], ])