From 6ec63fd77ff08e9db23a713ac68c2c7449bc3ed3 Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Tue, 2 Feb 2021 08:29:56 +0000 Subject: [PATCH 1/2] Update baseline (PCT fixes on Java 11) --- Jenkinsfile | 7 ++++++- pom.xml | 6 +++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a229fa51..4d04b4db 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1 +1,6 @@ -buildPlugin() +buildPlugin(configurations: [ + [ platform: "linux", jdk: "8", jenkins: null ], + [ platform: "windows", jdk: "8", jenkins: null ], + [ platform: "linux", jdk: "11", jenkins: null ] +]) + diff --git a/pom.xml b/pom.xml index 8931f113..32322596 100644 --- a/pom.xml +++ b/pom.xml @@ -64,7 +64,7 @@ 2.41 -SNAPSHOT - 2.176.4 + 2.222.4 8 false true @@ -73,8 +73,8 @@ io.jenkins.tools.bom - bom-2.176.x - 16 + bom-2.222.x + 22 import pom From d899a2df9a127ed476c2ea6a4ff767a70d61e010 Mon Sep 17 00:00:00 2001 From: Tim Jacomb <21194782+timja@users.noreply.github.com> Date: Fri, 7 May 2021 07:41:54 +0100 Subject: [PATCH 2/2] Update Jenkinsfile --- Jenkinsfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4d04b4db..a205a3c2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,5 @@ buildPlugin(configurations: [ - [ platform: "linux", jdk: "8", jenkins: null ], - [ platform: "windows", jdk: "8", jenkins: null ], - [ platform: "linux", jdk: "11", jenkins: null ] + [ platform: "linux", jdk: "8" ], + [ platform: "windows", jdk: "8" ], + [ platform: "linux", jdk: "11" ] ]) -