File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
88
99 id ' com.diffplug.spotless' version ' 6.25.0'
1010 id ' io.github.gradle-nexus.publish-plugin' version ' 1.3.0'
11- id ' net.ltgt.errorprone' version ' 3.0.1 '
11+ id ' net.ltgt.errorprone' version ' 4.1.0 '
1212 // To show task list as a tree, run: ./gradlew <taskname> taskTree
1313 id ' com.dorongold.task-tree' version ' 4.0.0'
1414}
@@ -121,6 +121,7 @@ tasks.withType(JavaCompile).configureEach {
121121 options. compilerArgs. add(" -Xlint:-fallthrough" )
122122
123123 options. errorprone. disable(" BadImport" )
124+ options. errorprone. disable(" VoidUsed" )
124125
125126 options. compilerArgs. addAll(
126127 [
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ dependencyResolutionManagement {
2020 library(" checkerFramework-framework" , " io.github.eisop" , " framework" ). versionRef(" checkerFramework" )
2121 library(" checkerFramework-framework-test" , " io.github.eisop" , " framework-test" ). versionRef(" checkerFramework" )
2222 library(" checkerFramework-javacutil" , " io.github.eisop" , " javacutil" ). versionRef(" checkerFramework" )
23- library(" errorProne-core" , " com.google.errorprone:error_prone_core:2.18 .0" )
23+ library(" errorProne-core" , " com.google.errorprone:error_prone_core:2.36 .0" )
2424 library(" errorProne-javac" , " com.google.errorprone:javac:9+181-r4173-1" )
2525 library(" guava" , " com.google.guava:guava:31.1-jre" )
2626
Original file line number Diff line number Diff line change 33plugins {
44 id ' java'
55 id ' com.diffplug.spotless' version ' 6.25.0'
6- id ' net.ltgt.errorprone' version ' 3 .1.0'
7- id ' org.checkerframework' version ' 0.6.42 ' apply false
6+ id ' net.ltgt.errorprone' version ' 4 .1.0'
7+ id ' org.checkerframework' version ' 0.6.48 ' apply false
88}
99
1010ext {
1111 versions = [
12- eisopVersion : ' 3.42.0-eisop4 ' ,
12+ eisopVersion : ' 3.42.0-eisop5 ' ,
1313 jspecifyVersion : ' 1.0.0' ,
1414 jspecifyReferenceCheckerVersion : ' 0.0.0-SNAPSHOT'
1515 ]
@@ -22,7 +22,7 @@ repositories {
2222
2323// Project dependencies, e.g. error prone.
2424dependencies {
25- errorprone ' com.google.errorprone:error_prone_core:2.23 .0'
25+ errorprone ' com.google.errorprone:error_prone_core:2.36 .0'
2626}
2727
2828// Dependency on JSpecify annotations.
@@ -37,6 +37,7 @@ apply plugin: 'org.checkerframework'
3737dependencies {
3838 compileOnly " io.github.eisop:checker-qual:${ versions.eisopVersion} "
3939 testCompileOnly " io.github.eisop:checker-qual:${ versions.eisopVersion} "
40+ checkerFramework " io.github.eisop:checker-qual:${ versions.eisopVersion} "
4041 checkerFramework " io.github.eisop:checker:${ versions.eisopVersion} "
4142
4243 compileOnly " org.jspecify.reference:checker:${ versions.jspecifyReferenceCheckerVersion} "
You can’t perform that action at this time.
0 commit comments