Skip to content

Commit

Permalink
Build both on Java 8 and Java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
batmat committed Jan 29, 2019
1 parent 73741da commit 1b319fb
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Jenkinsfile
@@ -1 +1,10 @@
buildPlugin()
coreJdk11Version="2.161"

buildPlugin(configurations: [
[ platform: "linux", jdk: "8", jenkins: null ],
[ platform: "windows", jdk: "8", jenkins: null ],
[ platform: "linux", jdk: "8", jenkins: coreJdk11Version, javaLevel: "8" ],
[ platform: "windows", jdk: "8", jenkins: coreJdk11Version, javaLevel: "8" ],
[ platform: "linux", jdk: "11", jenkins: coreJdk11Version, javaLevel: "8" ],
[ platform: "windows", jdk: "11", jenkins: coreJdk11Version, javaLevel: "8" ]
])

0 comments on commit 1b319fb

Please sign in to comment.