From cfcc2cb0551e5f7109be0a8dc7816b8a24dd1d66 Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Tue, 27 Jun 2023 00:00:41 +0200 Subject: [PATCH] Replace deprecated 'recommendedConfigurations' with replacement configuration --- Jenkinsfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 87a086d..0cd19c7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1 +1,6 @@ -buildPlugin(configurations: buildPlugin.recommendedConfigurations()) +buildPlugin( + useContainerAgent: true, + configurations: [ + [platform: 'linux', jdk: 8], + [platform: 'windows', jdk: 8], +])