Skip to content

Commit

Permalink
ci: record PMD check findings and align instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrueckert committed Aug 11, 2024
1 parent 3c0bb84 commit 93f71b4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,10 @@ pipeline {
])

recordIssues(skipBlames: true, enabledForFailure: true,
tools: [
spotBugs(pattern: '**/build/reports/spotbugs/*.xml', useRankAsPriority: true)
])
tool: spotBugs(pattern: '**/build/reports/spotbugs/*.xml', useRankAsPriority: true))

recordIssues(skipBlames: true, enabledForFailure: true,
tool: pmd(pattern: '**/build/reports/pmd/*.xml', useRankAsPriority: true))

recordIssues(skipBlames: true, enabledForFailure: true,
tool: taskScanner(includePattern: '**/*.java,**/*.groovy,**/*.gradle', \
Expand Down

0 comments on commit 93f71b4

Please sign in to comment.