File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ tasks {
50
50
disable(" UnnecessarilyFullyQualified" )
51
51
52
52
// We use animal sniffer
53
- disable(" Java7ApiChecker" )
54
53
disable(" Java8ApiChecker" )
55
54
disable(" AndroidJdkLibsChecker" )
56
55
@@ -87,8 +86,9 @@ tasks {
87
86
// cognitive load is dubious.
88
87
disable(" YodaCondition" )
89
88
90
- // Text blocks are not supported in java 8
91
- disable(" StringConcatToTextBlock" )
89
+ // We annotate packages with @ParametersAreNonnullByDefault from com.google.code.findbugs:jsr305.
90
+ // @NullMarked is the equivalent from jspecify.
91
+ disable(" AddNullMarkedToPackageInfo" )
92
92
93
93
if ((name.contains(" Jmh" ) || name.contains(" Test" ) || project.name.contains(" testing-internal" )) && ! project.name.equals(" custom-checks" )) {
94
94
// Allow underscore in test-type method names
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ val DEPENDENCY_BOMS = listOf(
28
28
)
29
29
30
30
val autoValueVersion = " 1.11.0"
31
- val errorProneVersion = " 2.37 .0"
31
+ val errorProneVersion = " 2.38 .0"
32
32
val jmhVersion = " 1.37"
33
33
// Mockito 5.x.x requires Java 11 https://github.com/mockito/mockito/releases/tag/v5.0.0
34
34
val mockitoVersion = " 4.11.0"
You can’t perform that action at this time.
0 commit comments