Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {

implementation("io.opentelemetry.instrumentation:gradle-plugins:2.26.1-alpha")

implementation("net.ltgt.gradle:gradle-errorprone-plugin:4.3.0")
implementation("net.ltgt.gradle:gradle-errorprone-plugin:5.1.0")
implementation("net.ltgt.gradle:gradle-nullaway-plugin:3.0.0")

implementation("gradle.plugin.io.morethan.jmhreport:gradle-jmh-report:0.9.6")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ tasks {
errorprone {
if (disableErrorProne) {
logger.warn("Errorprone has been disabled. Build may not result in a valid PR build.")
isEnabled.set(false)
isEnabled = false
}

disableWarningsInGeneratedCode.set(true)
allDisabledChecksAsWarnings.set(true)
disableWarningsInGeneratedCode = true
allDisabledChecksAsWarnings = true

// Ignore warnings for generated classes
excludedPaths.set(".*/build/generated/.*")
excludedPaths = ".*/build/generated/.*"

// it's very convenient to debug stuff in the javaagent using System.out.println
// and we don't want to conditionally only check this in CI
Expand Down