Skip to content

Commit

Permalink
Improve glob to pick up multiple PMD and CheckStyle files.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Mar 15, 2024
1 parent 715c005 commit a9430b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/default-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
{
"id": "checkstyle",
"name": "CheckStyle",
"pattern": "**/target/checkstyle-result.xml"
"pattern": "**/target/**checkstyle-result.xml"
},
{
"id": "pmd",
"name": "PMD",
"pattern": "**/target/pmd.xml"
"pattern": "**/target/**pmd.xml"
}
],
"errorImpact": -1,
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/default-no-score-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
{
"id": "checkstyle",
"name": "CheckStyle",
"pattern": "**/target/checkstyle-result.xml"
"pattern": "**/target/**checkstyle-result.xml"
},
{
"id": "pmd",
"name": "PMD",
"pattern": "**/target/pmd.xml"
"pattern": "**/target/**pmd.xml"
}
]
},
Expand Down

0 comments on commit a9430b8

Please sign in to comment.