Merge pull request #323 from jaredlll08/patch-1

Future proof Jenkinsfile
This commit is contained in:
Tschipp 2021-06-12 15:05:16 +02:00 committed by GitHub
commit 61aba0c6a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
Jenkinsfile vendored
View File

@ -2,6 +2,9 @@
pipeline {
agent any
tools {
jdk "jdk8u292-b10"
}
stages {
stage('Clean') {
steps {
@ -26,4 +29,4 @@ pipeline {
archive 'build/libs/**.jar'
}
}
}
}