FluentFuture Class 未找到多个 AnntationProcessor

FluentFuture Class not found with multiple AnntationProcessor

我正在使用 Maven 和自定义 AnnotationProcessor 开发一个简单的 Java 8 项目。

如果我只使用 Dagger 2.15 或我的 AnnotationProcessor,它运行良好,但如果我同时使用它们,maven 构建将失败并出现以下错误:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.6.1:compile (default-compile) on project MyProject: Fatal error compiling: java.lang.NoClassDefFoundError: com/google/common/util/concurrent/FluentFuture: com.google.common.util.concurrent.FluentFuture -> [Help 1]

我尝试从 com.google.guava.guava 存储库(版本 r05、19.0、24.1-jre)导入 com.google.common.util.concurrent.FluentFuture class,但没有成功。

项目结构:

我能做什么?

感谢您的帮助!

我降级到 dagger 2.14.1 并不再收到该错误。