Jens Pelzetter 2020-08-16 14:01:42 +02:00
parent bdedb80a8b
commit 2a928b91be
1 changed files with 4 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -40,7 +40,10 @@ pipeline {
body: "Build ${env.BUILD_URL} failed." body: "Build ${env.BUILD_URL} failed."
} }
always { always {
junit allowEmptyResults: true testResults: '**/target/surefire-reports/*.xml' junit {
allowEmptyResults: true
testResults: '**/target/surefire-reports/*.xml'
}
recordIssues enabledForFailure: true, tools: [java(), javaDoc()] recordIssues enabledForFailure: true, tools: [java(), javaDoc()]
recordIssues enabledForFailure: false, tool: spotBugs() recordIssues enabledForFailure: false, tool: spotBugs()