Skip to content

Commit

Permalink
build: Disable errorprone record javadoc check
Browse files Browse the repository at this point in the history
A proper fix is on the way in until google/error-prone#2321
  • Loading branch information
loicrouchon committed Sep 18, 2022
1 parent 842332d commit 69778c4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle.kts
@@ -1,3 +1,5 @@
import net.ltgt.gradle.errorprone.errorprone

plugins {
application
`jvm-test-suite`
Expand Down Expand Up @@ -46,6 +48,10 @@ tasks.processResources {
}
}

tasks.withType<JavaCompile> {
options.errorprone.disable("InvalidParam")
}

repositories {
mavenCentral()
}
Expand Down

0 comments on commit 69778c4

Please sign in to comment.