我正在尝试下载依赖项 serenity core 4xx 版本(testImplementation "net.serenity-bdd:serenity-core:4.0.0-beta-1"),但它抛出以下错误: 无法解析 com.google.guava:guava:31.1-jre 无法解析 com.google.guava:guava:32.1.2-jre
我尝试通过明确给出以下依赖项来解决它: “com.google.guava:番石榴:31.1-jre”, 但它仍然抛出上面显示的相同的两个错误
我也遇到了同样的问题: 在模块 jetified-guava-31.1-android (com.google.guava:guava:31.1-android) 和 jetified-guava-jdk5-17.0 (com.google.guava:guava) 中发现重复的类 com.google.common.annotations.GwtCompatible -jdk5:17.0)
我通过在应用程序 Gradle 中添加它来解决它:
configurations {
implementation.exclude group: 'com.google.guava', module: 'guava-jdk5'
}