Skip to content

Commit

Permalink
Bump com.google.errorprone:error_prone_core from 2.18.0 to 2.19.0 (#133)
Browse files Browse the repository at this point in the history
* Bump com.google.errorprone:error_prone_core from 2.18.0 to 2.19.0

Bumps [com.google.errorprone:error_prone_core](https://github.com/google/error-prone) from 2.18.0 to 2.19.0.
- [Release notes](https://github.com/google/error-prone/releases)
- [Commits](google/error-prone@v2.18.0...v2.19.0)

---
updated-dependencies:
- dependency-name: com.google.errorprone:error_prone_core
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* applied suggested workaround for compiling with jdk 11

See here: google/error-prone#3895 and
google/error-prone#2092

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: -Denux <83671398+DenuxPlays@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and DenuxPlays authored May 9, 2023
1 parent b8e2d29 commit 3fa9e96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencies {

//code saftey
compileOnly("com.google.code.findbugs:jsr305:3.0.2")
errorprone("com.google.errorprone:error_prone_core:2.18.0")
errorprone("com.google.errorprone:error_prone_core:2.19.0")

//Lombok's annotations
compileOnly("org.projectlombok:lombok:$lombokVersion")
Expand Down Expand Up @@ -97,7 +97,7 @@ tasks.withType<JavaCompile>().configureEach {
//error-prone configuration
options.errorprone.disableWarningsInGeneratedCode.set(true)
options.errorprone.errorproneArgs.addAll(
"-Xep:AnnotateFormatMethod:OFF", "-Xep:FutureReturnValueIgnored:OFF")
"-Xep:AnnotateFormatMethod:OFF", "-Xep:FutureReturnValueIgnored:OFF", "-Xep:HidingField:OFF")
}

val javadocJar = task<Jar>("javadocJar") {
Expand Down

0 comments on commit 3fa9e96

Please sign in to comment.