Jens Pelzetter 2020-08-16 14:03:48 +02:00
parent 2a928b91be
commit 6f473bc48e
1 changed files with 2 additions and 4 deletions

6
Jenkinsfile vendored
View File

@ -40,10 +40,8 @@ pipeline {
body: "Build ${env.BUILD_URL} failed." body: "Build ${env.BUILD_URL} failed."
} }
always { always {
junit { junit allowEmptyResults: true, testResults: '**/target/surefire-reports/*.xml'
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()