Add pmd reporting
Merge jacoco into testing
This commit is contained in:
parent
c8ebe3b004
commit
c37dd12eb2
1 changed files with 2 additions and 1 deletions
|
@ -36,6 +36,7 @@ pipeline {
|
|||
stage('Test Results') {
|
||||
steps {
|
||||
junit '**/target/surefire-reports/*.xml'
|
||||
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
|
||||
}
|
||||
}
|
||||
stage('Archiving') {
|
||||
|
@ -45,7 +46,7 @@ pipeline {
|
|||
}
|
||||
stage('Quality') {
|
||||
steps {
|
||||
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
|
||||
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
|
||||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
|
|
Loading…
Reference in a new issue