Skip to content

Commit

Permalink
Bump Checkstyle from 10.12.5 to 10.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
valfirst committed Feb 22, 2024
1 parent 593aff2 commit c78b22f
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,24 @@ if (JavaVersion.current().isJava11Compatible()) {
apply plugin: 'checkstyle'

checkstyle {
toolVersion = '10.12.5'
toolVersion = '10.13.0'
ignoreFailures = false
showViolations = true
}

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

// https://github.com/checkstyle/checkstyle/issues/14211#issuecomment-1905356177
configurations.checkstyle {
resolutionStrategy.capabilitiesResolution.withCapability('com.google.collections:google-collections') {
select('com.google.guava:guava:0')
}
}
}

jar {
Expand Down

0 comments on commit c78b22f

Please sign in to comment.