From c7a3f4c7ac26de8119be533a2d1a3774bf59688c Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 29 Mar 2025 05:22:24 +0000 Subject: [PATCH 1/2] chore(pom): Use recommended core version 2.462.3, and Java 11. --- pom.xml | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/pom.xml b/pom.xml index f0fecef..c053093 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.jenkins-ci.plugins plugin - 4.33 + 4.88 io.jenkins.plugins @@ -15,9 +15,8 @@ 999999-SNAPSHOT - 2.263 - ${jenkins.baseline}.1 - 8 + 2.462 + ${jenkins.baseline}.3 jenkinsci/${project.artifactId}-plugin 4.3 @@ -29,7 +28,7 @@ io.jenkins.tools.bom bom-${jenkins.baseline}.x - 961.vf0c9f6f59827 + 4228.v0a_71308d905b_ import pom @@ -40,7 +39,6 @@ org.jenkins-ci.plugins git - 4.8.1 org.jenkins-ci.plugins @@ -73,7 +71,7 @@ - scm:git:git://github.com/${gitHubRepo}.git + scm:git:https://github.com/${gitHubRepo}.git scm:git:git@github.com:${gitHubRepo}.git https://github.com/${gitHubRepo} ${scmTag} @@ -118,12 +116,4 @@ - - - - reda-alaoui - Réda Housni Alaoui - reda-alaoui@hey.com - - From c6f1303f224bbe6bc835ab671a4d6e6497cb90d2 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 15 Apr 2025 17:10:52 +0200 Subject: [PATCH 2/2] chore(maven): Move to JDK17/JDK21. --- Jenkinsfile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 18218b7..b3312ef 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,11 @@ /* - See the documentation for more options: - https://github.com/jenkins-infra/pipeline-library/ -*/ -buildPlugin(useContainerAgent: true) + * 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: 21], + [platform: 'windows', jdk: 17], +])