Skip to content

Commit

Permalink
Fix testAnnotationProcessor missing for errorprone
Browse files Browse the repository at this point in the history
  • Loading branch information
malliaridis committed Jan 11, 2025
1 parent 984c0c7 commit 0783610
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/documentation/render-javadoc.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ configure(subprojects) {
}.findAll {
// Do not depend on disabled tasks or tasks that do not exist
// :platform module does not have a renderJavaDoc and therefore task is null
it != null && it.enabled == true
it?.enabled == true
}
}
}
Expand Down
1 change: 1 addition & 0 deletions gradle/validation/error-prone.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ allprojects { prj ->
errorprone libs.google.errorprone.core
}
configurations.annotationProcessor.extendsFrom(configurations.errorprone)
configurations.testAnnotationProcessor.extendsFrom(configurations.errorprone)
} else {
prj.apply plugin: libs.plugins.ltgt.errorprone.get().pluginId

Expand Down

0 comments on commit 0783610

Please sign in to comment.