Skip to content

Commit

Permalink
Bump com.google.errorprone:error_prone_core from 2.10.0 to 2.32.0 in …
Browse files Browse the repository at this point in the history
…/docs/examples/errorprone (#907)

Co-authored-by: Werner Dietl <[email protected]>
  • Loading branch information
dependabot[bot] and wmdietl committed Sep 13, 2024
1 parent 6f5f8bd commit b937185
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/examples/errorprone/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ dependencies {
// Must use at least version 2.4.0 of Error Prone.
if (JavaVersion.current() == JavaVersion.VERSION_1_8) {
errorprone 'com.google.errorprone:error_prone_core:2.10.0'
} else {
} else if (JavaVersion.current() < JavaVersion.VERSION_17) {
errorprone 'com.google.errorprone:error_prone_core:2.31.0'
} else {
errorprone 'com.google.errorprone:error_prone_core:2.32.0'
}
}

Expand Down

0 comments on commit b937185

Please sign in to comment.