Jenkins: Find maven warnings and visualize in job

This commit is contained in:
Johannes Schnatterer
2018-06-27 11:41:25 +02:00
parent e41083628d
commit 21a6b0050a

3
Jenkinsfile vendored
View File

@@ -40,5 +40,8 @@ node() { // No specific label
// Archive Unit and integration test results, if any
junit allowEmptyResults: true, testResults: '**/target/failsafe-reports/TEST-*.xml,**/target/surefire-reports/TEST-*.xml,**/target/jest-reports/TEST-*.xml'
// Find maven warnings and visualize in job
warnings consoleParsers: [[parserName: 'Maven']], canRunOnFailed: true
mailIfStatusChanged(defaultEmailRecipients)
}