diff --git a/Jenkinsfile b/Jenkinsfile index 87a086d..e0baa4e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1 +1,11 @@ -buildPlugin(configurations: buildPlugin.recommendedConfigurations()) +buildPlugin(configurations: [ + // Test Windows & Linux with default values + [ platform: "linux", jdk: "8", jenkins: null ], + [ platform: "windows", jdk: "8", jenkins: null ], + + // More recent LTS, only Linux + [ platform: "linux", jdk: "8", jenkins: '2.222.1', javaLevel: "8" ], + + // Checking JDK 11 + [ platform: "linux", jdk: "11", jenkins: null ] +])