Well, I have tried configuring these plugins for a freestyle project, and they are all working OK now for that:
But if I try to setup Checkstyle with the following pipeline configuration:
stage('Rubocop CheckStyle Publisher') {
node {
step([$class: 'CheckStylePublisher',
canRunOnFailed: true,
defaultEncoding: '',
healthy: '',
pattern: '**/rubocop-checkstyle-result.xml',
unHealthy: '',
useStableBuildAsReference: true
])
}
}
Then I get the following errors:
Am I doing something not quite right, or is this a known bug in Checkstyle?
TIA
Frederick