Skip to content

Commit

Permalink
applied suggested workaround for compiling with jdk 11
Browse files Browse the repository at this point in the history
  • Loading branch information
DenuxPlays authored May 9, 2023
1 parent 523bc35 commit b23f0cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
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 b23f0cc

Please sign in to comment.