Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ tasks {
disable("UnnecessarilyFullyQualified")

// TODO (trask) use animal sniffer
disable("Java7ApiChecker")
disable("Java8ApiChecker")
disable("AndroidJdkLibsChecker")

Expand Down Expand Up @@ -79,8 +78,8 @@ tasks {
// cognitive load is dubious.
disable("YodaCondition")

// We get this warning in modules that compile for old java versions
disable("StringConcatToTextBlock")
// Requires adding compile dependency to JSpecify
disable("AddNullMarkedToPackageInfo")

if (name.contains("Jmh") || name.contains("Test")) {
// Allow underscore in test-type method names
Expand Down
4 changes: 2 additions & 2 deletions dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ dependencies {
api("com.google.auto.service:auto-service-annotations:1.1.1")
api("com.google.auto.value:auto-value:1.11.0")
api("com.google.auto.value:auto-value-annotations:1.11.0")
api("com.google.errorprone:error_prone_annotations:2.37.0")
api("com.google.errorprone:error_prone_core:2.37.0")
api("com.google.errorprone:error_prone_annotations:2.38.0")
api("com.google.errorprone:error_prone_core:2.38.0")
api("io.github.netmikey.logunit:logunit-jul:2.0.0")
api("io.opentelemetry.proto:opentelemetry-proto:1.5.0-alpha")
api("io.prometheus:simpleclient:0.16.0")
Expand Down
Loading