-
Type:
Improvement
-
Resolution: Fixed
-
Priority:
Major
-
Component/s: job-dsl-plugin, warnings-ng-plugin
'warnings-ng-plugin' (https://github.com/jenkinsci/warnings-ng-plugin/blob/master/doc/Documentation.md) has no support for dsl-plugin. Could you please add support to write those steps as a code in a Jenkins Job DSL pluging?
Â
I would like to convert this code with warning-ng-plugin support:
Â
// Post-build actions publishers { checkstyle('myproject/build/reports/checkstyle/*.xml') findbugs('myproject/build/reports/findbugs/*.xml') pmd('myproject/build/reports/pmd/*.xml') tasks('**/*.java', '', 'FIXME', 'TODO', 'LOW', false) archiveJunit('myproject/build/test-results/test/TEST-*.xml'){ healthScaleFactor(0) } }
Â