This commit is contained in:
anhefti 2022-03-28 13:56:04 +02:00
parent 09b238d9c3
commit bf8b30e061

4
Jenkinsfile vendored
View file

@ -22,7 +22,9 @@ pipeline {
stage('Reporting') {
steps {
sh '${M2_HOME}/bin/mvn --batch-mode -V -U -e pmd:pmd pmd:cpd findbugs:findbugs spotbugs:spotbugs'
withMaven(maven: 'Maven', options: [findbugsPublisher(disabled: true)]) {
sh "mvn --batch-mode -V -U -e pmd:pmd pmd:cpd findbugs:findbugs spotbugs:spotbugs"
}
}
}
}