Future proof Jenkinsfile

This commit is contained in:
Jared 2021-06-12 03:52:27 +02:00 committed by GitHub
parent c2e567e27e
commit bb9c321a42
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'
}
}
}
}