找不到 com.google.auth.Credentials 的类文件

问题描述

我无法在 FirebaSEOptions 中使用 GoogleCredentials。使用 Maven 导出时出现以下错误

  class file for com.google.auth.Credentials not found

 FirebaSEOptions options = FirebaSEOptions.builder()

                    .setCredentials(GoogleCredentials.fromStream(serviceAccount))
                    // Your Database URL can be found in your firebase console -> your project
                    .setDatabaseUrl("https://health-45311.firebaseio.com/")
                    .build();

在 Intellij 中我无法导入包,但是当我使用 Maven 导出时没有任何效果

我的 pom.xml

 <dependencies>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-controls</artifactId>
            <version>15.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-fxml</artifactId>
            <version>15.0.1</version>
        </dependency>

        <dependency>
            <groupId>com.google.firebase</groupId>
            <artifactId>firebase-admin</artifactId>
            <version>7.1.0</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/com.google.oauth-client/google-oauth-client -->
        <dependency>
            <groupId>com.google.oauth-client</groupId>
            <artifactId>google-oauth-client</artifactId>
            <version>1.31.2</version>
        </dependency>




    </dependencies>

解决方法

我发现 "firebase-admin" 依赖项有另一个版本的 "google-oauth-client"。尝试从 pom 中排除

    <dependency>
        <groupId>com.google.firebase</groupId>
        <artifactId>firebase-admin</artifactId>
        <version>7.1.0</version>
        <exclusions>
            <exclusion>
                <groupId>com.google.oauth-client</groupId>
                <artifactId>google-oauth-client</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

检查此类事情的一个好方法是在控制台中运行 mvn dependency:tree -Dverbose

编辑 - 发布回复

我发现过去有一个类似的问题。 Here is the link

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...