2

我运行这个 cmd

gcloud 应用部署

并得到这个错误

[错误] 在当前项目和插件组 [org.apache.maven.plugins, org.codehaus.mojo] 中找不到前缀“gcloud”的插件,可从存储库 [local (/Users/gallavie/.m2/ repository), central (https://repo.maven.apache.org/maven2)] -> [Help 1] [ERROR] [ERROR] 要查看错误的完整堆栈跟踪,请使用 -e 重新运行 Maven转变。[错误] 使用 -X 开关重新运行 Maven 以启用完整的调试日志记录。[ERROR] [ERROR] 有关错误和可能的解决方案的更多信息,请阅读以下文章: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException

这是我在 pom.xml 文件中的插件

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <version>2.5.1</version>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.3</version>
            <configuration>
                <archiveClasses>true</archiveClasses>
                <webResources>
                    <!-- in order to interpolate version from pom into appengine-web.xml -->
                    <resource>
                        <directory>${basedir}/src/main/webapp/WEB-INF</directory>
                        <filtering>true</filtering>
                        <targetPath>WEB-INF</targetPath>
                    </resource>
                </webResources>
            </configuration>
        </plugin>

        <plugin>
            <groupId>com.google.appengine</groupId>
            <artifactId>appengine-maven-plugin</artifactId>
            <version>${appengine.target.version}</version>
        </plugin>
    </plugins>
</build>
4

3 回答 3

1

您收到该错误的原因是您缺少 中的gcloud依赖项,请pom.xml尝试向其中添加以下内容:

<plugin>
   <groupId>com.google.cloud.tools</groupId>
   <artifactId>appengine-maven-plugin</artifactId>
   <version>2.2.0</version>
</plugin>

此外,有关使用 maven 部署到 appengine 的更多信息,您可以查看此文档

于 2020-09-15T14:14:20.733 回答
0

迁移后有类似的问题,pom 很好,以下命令有帮助。

mvn clean package install -P dev appengine:deploy -Dapp.deploy.version=app_version

这里这里的文档很有帮助。

于 2021-03-12T08:43:07.283 回答
0

以下对我有用:

mvn package appengine:deploy

于 2021-06-13T20:19:11.913 回答