Will-Lo commented on code in PR #3669:
URL: https://github.com/apache/gobblin/pull/3669#discussion_r1164426604
##########
gradle/scripts/dependencyDefinitions.gradle:
##########
@@ -49,8 +49,9 @@ ext.externalDependency = [
"commonsPool": "org.apache.commons:commons-pool2:2.4.2",
"datanucleusCore": "org.datanucleus:datanucleus-core:3.2.10",
"datanucleusRdbms": "org.datanucleus:datanucleus-rdbms:3.2.9",
+ "errorProne": "com.google.errorprone:error_prone_annotations:2.0.15",
Review Comment:
Errorprone is needed for some annotations such as `@IgnoreReturnValue` which
is used in Guava transitively, but they removed the direct dependency on it so
we have to include it manually.
It's discussed in this Github thread where the fix is to include errorProne
as a compile dependency, otherwise we will have to bump to a future version of
Guava https://github.com/google/guava/issues/2837
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]