We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf16411 commit 14c9eccCopy full SHA for 14c9ecc
Jenkinsfile
@@ -1,4 +1,9 @@
1
#!groovy
2
3
-// Use recommended configuration
4
-buildPlugin(configurations: buildPlugin.recommendedConfigurations())
+def configurations = [
+ [ platform: "linux", jdk: "8", jenkins: null ],
5
+ [ platform: "windows", jdk: "8", jenkins: null ],
6
+ [ platform: "linux", jdk: "11", jenkins: null, javaLevel: "8" ],
7
+ [ platform: "windows", jdk: "11", jenkins: null, javaLevel: "8" ]
8
+]
9
+buildPlugin(configurations: configurations)
0 commit comments