Skip to content

Commit

Permalink
For #478. Enable SARIF in Gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
binkley committed May 15, 2024
1 parent fe52412 commit 6b4d157
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,14 @@ checkstyle {
// configFile = project(":").file("config/checkstyle/sun_checks.xml")
}

tasks.withType(Checkstyle) {
reports {
html.required = true
sarif.required = true
xml.required = true
}
}

pmd {
ignoreFailures = false
// TODO: targetJdk = 21 -- there is no defined property for this
Expand Down

0 comments on commit 6b4d157

Please sign in to comment.