Update Jenkinsfile

This commit is contained in:
Stijn Bannink 2020-02-25 16:05:18 +01:00 committed by GitHub
parent ba3798f42a
commit 0b7a9db02d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
Jenkinsfile vendored
View file

@ -23,7 +23,7 @@ pipeline {
echo 'Archiving coverage results...'
jacoco(execPattern: '**/**.exec', classPattern: '**/classes', sourcePattern: '**/src/main/java')
echo 'Archiving test results...'
junit 'target/surefire-reports/*.xml'
junit allowEmptyResults: true, testResults: 'target/surefire-reports/*.xml'
echo 'Archiving artifacts...'
archiveArtifacts artifacts: 'target/*.jar', fingerprint: true
}