gpt4 book ai didi

google-app-engine - maven-get-plugin 突然坏了

转载 作者:太空宇宙 更新时间:2023-11-03 15:24:21 26 4
gpt4 key购买 nike

我不确定发生了什么,但我没有对我的 pom 进行任何更改,只进行了全新安装,但现在使用 mvn gae:run 运行我的应用程序时出现以下错误:


[错误]无法执行目标 net.kindleit:maven-gae-plugin:0.9.4:run (default-cli) on project geoip-service: Execution default-cli of goal net.kindleit:maven-gae-plugin:0.9 .4:运行失败:插件 net.kindleit:maven-gae-plugin:0.9.4 或其依赖项之一无法解析:无法收集 net.kindleit:maven-gae-plugin:jar:0.9.4 的依赖项():无法读取 net.kindleit:gae-runtime:pom:1.7.5 的 Artifact 描述符:无法在 genius 中找到 Artifact net.kindleit:maven-gae-parent:pom:0.9.6-SNAPSHOT(our_own_repo_here)

我使用的是 1.7.2 版本的 sdk,所以我不确定 1.7.5 可能来自哪里。

最佳答案

目前,您可以使用这个丑陋的 hack

<properties>
<gae.version>1.7.5</gae.version>
<gae-runtime.version>1.7.5.1</gae-runtime.version>
</properties>

<plugin>
<groupId>net.kindleit</groupId>
<artifactId>maven-gae-plugin</artifactId>
<version>${maven.gae.plugin.version}</version>
<configuration>
<unpackVersion>${gae.version}</unpackVersion>
<serverId>appengine.google.com</serverId>
<appDir>${webappDirectory}</appDir>
</configuration>
<dependencies>
<dependency>
<groupId>net.kindleit</groupId>
<artifactId>gae-runtime</artifactId>
<version>${gae-runtime.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</plugin>

关于google-app-engine - maven-get-plugin 突然坏了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15094381/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com