Google 存储客户端库 (appengine-gcs-client) 具有不可用的依赖项 (google-http-client-parent:pom:1.24.1)

Posted

技术标签:

【中文标题】Google 存储客户端库 (appengine-gcs-client) 具有不可用的依赖项 (google-http-client-parent:pom:1.24.1)【英文标题】:Google Storage client library (appengine-gcs-client) has unavailable dependency (google-http-client-parent:pom:1.24.1) 【发布时间】:2019-01-09 02:21:05 【问题描述】:

我将 appengine-gcs-client 添加到我的 Google AppEngine Standard 项目中:

    *<dependency>
        <groupId>com.google.appengine.tools</groupId>
        <artifactId>appengine-gcs-client</artifactId>
        <version>0.7</version>
    </dependency>*

(按照本页说明:https://cloud.google.com/appengine/docs/standard/java/googlecloudstorageclient/setting-up-cloud-storage)

编译项目报如下错误(前几天还没有问题):

[错误] 无法在项目 myproject2 上执行目标:无法解析项目 com.myproject2:myproject2:war:1.0-SNAPSHOT 的依赖项:无法在 com.google.appengine.tools:appengine- 收集依赖项gcs-client:jar:0.7 -> com.google.api-client:google-api-client-appengine:jar:1.24.1 -> com.google.oauth-client:google-oauth-client-appengine:jar: 1.24.1 -> com.google.http-client:google-http-client-appengine:jar:1.24.1:无法读取 com.google.http-client:google-http-client-appengine:jar 的工件描述符:1.24.1: 找不到 com.google.http-client:google-http-client-parent:pom:1.24.1 in https://repo.maven.apache.org/maven2 已缓存在本地存储库中,直到更新间隔才会重新尝试解析Central 已过期或强制更新 -> [Help 1]

Google 似乎刚刚在依赖树中创建了一些错误。

有什么办法可以修复它,即使只是临时解决方法?


使用重现错误的完整 pom 更新我的问题:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <packaging>war</packaging>
    <version>0.1.0-SNAPSHOT</version>

    <groupId>com.myproject2</groupId>
    <artifactId>myproject2</artifactId>

    <properties>
        <appengine.maven.plugin.version>1.3.1</appengine.maven.plugin.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
    </properties>

    <prerequisites>
        <maven>3.3.9</maven>
    </prerequisites>

    <dependencies>
        <!-- Compile/runtime dependencies -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>javax.servlet.jsp-api</artifactId>
            <version>2.3.1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.google.appengine</groupId>
            <artifactId>appengine-api-1.0-sdk</artifactId>
            <version>1.9.59</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>jstl</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>

        <!-- For cloud storage https://cloud.google.com/appengine/docs/standard/java/googlecloudstorageclient/setting-up-cloud-storage -->
        <dependency>
            <groupId>com.google.appengine.tools</groupId>
            <artifactId>appengine-gcs-client</artifactId>
            <version>0.7</version>
        </dependency>

        <!-- Test Dependencies -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.google.endpoints</groupId>
            <artifactId>endpoints-framework</artifactId>
            <version>2.1.1</version>
        </dependency>
        <dependency>
            <groupId>com.googlecode.objectify</groupId>
            <artifactId>objectify</artifactId>
            <version>6.0</version>
        </dependency>
    </dependencies>

    <build>
        <!-- for hot reload of the web application -->
        <outputDirectory>$project.build.directory/$project.build.finalName/WEB-INF/classes</outputDirectory>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>versions-maven-plugin</artifactId>
                <version>2.3</version>
                <executions>
                    <execution>
                        <phase>compile</phase>
                        <goals>
                            <goal>display-dependency-updates</goal>
                            <goal>display-plugin-updates</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>com.google.cloud.tools</groupId>
                <artifactId>appengine-maven-plugin</artifactId>
                <version>$appengine.maven.plugin.version</version>
            </plugin>
        </plugins>
    </build>
</project>

【问题讨论】:

首先删除$HOME/.m2/repository/com/google中的目录并尝试重建,但我建议在纯命令行上执行此操作... 感谢 khmarbaise。我只是这样做了,但没有帮助;错误症状保持不变 您使用的是 Java 8 还是 Java 7? 你看过$HOME/.m2/repository/com/google/吗?你在那里找到文件吗?您可以发布您正在使用的完整 pom 文件吗? 我也面临同样的问题。 @David,你找到解决方案了吗? 【参考方案1】:

似乎 Google 进行了一些重命名(他们删除了 artifactIds 的“-appengine”部分),这在 1.24.1 版本中不起作用。尝试用以下内容替换您的 gcs 依赖项:

<dependency>
    <groupId>com.google.appengine.tools</groupId>
    <artifactId>appengine-gcs-client</artifactId>
    <version>0.7</version>
  <exclusions>
    <exclusion>
      <groupId>com.google.http-client</groupId>
      <artifactId>*</artifactId>
    </exclusion> 
  </exclusions>
</dependency>
<dependency>
  <groupId>com.google.http-client</groupId>
  <artifactId>google-http-client-appengine</artifactId>
  <version>1.23.0</version>
</dependency>

它将排除 1.24.1 版本的所有非工作依赖项,而是使用以前的 1.23.0。您可能最终需要使用“-U”标志强制 maven 更新远程依赖项,例如,

mvn -U package

【讨论】:

这与删除我所有的本地 maven 存储库一起为我工作。谢谢@user1362526!【参考方案2】:

我遇到了 appengine-mapreduce 依赖项的错误。 通过排除引发错误的依赖项来修复它。

原始地图减少依赖

<dependency>
            <groupId>com.google.appengine.tools</groupId>
            <artifactId>appengine-mapreduce</artifactId>
            <version>0.9</version>
</dependency>

出现的错误

无法解析项目的依赖关系 PerpuleSmartShoppee:PerpuleSmartShoppee:war:0.0.1-SNAPSHOT: 失败 收集依赖项 com.google.appengine.tools:appengine-mapreduce:jar:0.9 -> com.google.appengine.tools:appengine-gcs-client:jar:0.4.3 -> com.google.api-client:google-api-client-appengine:jar:1.24.1 -> com.google.oauth-client:google-oauth-client-appengine:jar:1.24.1 -> com.google.http-client:google-http-client-appengine:jar:1.24.1:失败 读取工件描述符 com.google.http-client:google-http-client-appengine:jar:1.24.1: 找不到 com.google.http-client:google-http-client-parent:pom:1.24.1 在 https://repo.maven.apache.org/maven2 被缓存在本地 存储库,在更新之前不会重新尝试解析 中心间隔已过或强制更新 ->

将其更改为以下内容以使构建工作

<dependency>
            <groupId>com.google.api-client</groupId>
            <artifactId>google-api-client</artifactId>
            <version>1.22.0</version>
            <exclusions>
                <exclusion>
                    <artifactId>guava-jdk5</artifactId>
                    <groupId>com.google.guava</groupId>
                </exclusion>
            </exclusions>
        </dependency>
    <dependency>
                <groupId>com.google.api-client</groupId>
                <artifactId>google-api-client-appengine</artifactId>
                <version>1.22.0</version>
                <exclusions>
                    <exclusion>
                        <artifactId>guava</artifactId>
                        <groupId>com.google.guava</groupId>
                    </exclusion>
                </exclusions>   
            </dependency>
            <dependency>
                <groupId>com.google.appengine.tools</groupId>
                <artifactId>appengine-gcs-client</artifactId>
                <version>0.3</version>
                <exclusions>
                    <exclusion>
                        <artifactId>guava</artifactId>
                        <groupId>com.google.guava</groupId>
                    </exclusion>
                </exclusions>
            </dependency>
              <dependency>
                <groupId>com.google.appengine.tools</groupId>
                <artifactId>appengine-mapreduce</artifactId>
                <version>0.9</version>
                <exclusions>
                    <exclusion>
                        <artifactId>guava</artifactId>
                        <groupId>com.google.guava</groupId>
                    </exclusion>
                    <exclusion>
                        <artifactId>appengine-gcs-client</artifactId>
                        <groupId>com.google.appengine.tools</groupId>
                    </exclusion>
                    <exclusion>
                        <groupId>com.google.api-client</groupId>
                        <artifactId>google-api-client</artifactId>
                    </exclusion>
                    <exclusion>
                        <groupId>com.google.api-client</groupId>
                        <artifactId>google-api-client-appengine</artifactId>
                    </exclusion>

                </exclusions>
            </dependency> 

【讨论】:

【参考方案3】:

昨天,Google 显然未能为其 com.google.http-client 库的父级部署 1.24.0 版。

他们还使用了在appengine-gcs-client pom 中为他们的 http 客户端依赖声明一个范围的不良做法:

<dependency>
  <groupId>com.google.http-client</groupId>
  <artifactId>google-http-client</artifactId>
  <version>[1.19.0,2.0)</version>
</dependency>
<dependency>
  <groupId>com.google.http-client</groupId>
  <artifactId>google-http-client-jackson2</artifactId>
  <version>[1.19,2.0)</version>
</dependency>

所以昨天他们部署新版本1.24.0时,传递依赖自动升级了,但是版本是无效部署导致失败。

这为我解决了:

       <dependency>
            <groupId>com.google.appengine.tools</groupId>
            <artifactId>appengine-gcs-client</artifactId>
            <version>0.6</version>
            <exclusions>
                <exclusion>
                    <groupId>com.google.http-client</groupId>
                    <artifactId>google-http-client-jackson2</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.google.http-client</groupId>
                    <artifactId>google-http-client</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.google.http-client</groupId>
            <artifactId>google-http-client-jackson2</artifactId>
            <version>1.23.0</version>
        </dependency>
        <dependency>
            <groupId>com.google.http-client</groupId>
            <artifactId>google-http-client</artifactId>
            <version>1.23.0</version>
        </dependency>

【讨论】:

【参考方案4】:

尝试再次运行它。 Google 昨天更新 maven 版本时并没有将完整的更新推送到库中。他们已经推送了缺失的部分,现在它应该可以正常工作而无需任何修改。

【讨论】:

谢谢布赖恩!是的,我刚刚删除了下面答案中描述的解决方法,它再次起作用。【参考方案5】:

试试 MavenUpdate -

强制更新 勾选 --- 复选框 ReleasesForceUpdate of snapshots/Releases

【讨论】:

以上是关于Google 存储客户端库 (appengine-gcs-client) 具有不可用的依赖项 (google-http-client-parent:pom:1.24.1)的主要内容,如果未能解决你的问题,请参考以下文章

Google Cloud Endpoints 与 Cloud Datastore api 服务之间的比较

带有经过身份验证的 Appengine 端点的 Google Volley 库?

库 appengine.api.datastore 和 com.google.cloud.datastore 有啥区别?

App Engine 上 Cloud Datastore 的客户端库 - NDB 或 google-cloud-datastore

从 google appengine 数据存储迁移到 google cloud bigtable 的最佳方法是啥?

Google Appengine 数据存储的层次结构优化