为什么在从 appcfg mvn 迁移到 gcloud 后出现错误 Maven 源部署不支持 Java 8 GAE 项目

问题描述 投票:0回答:4

我运行这个cmd

gcloud 应用程序部署

并收到此错误

[错误] 在当前项目和插件组 [org.apache.maven.plugins, org.codehaus.mojo] 中找不到前缀“gcloud”的插件,可从存储库 [local (/Users/gallavie/.m2) /repository), 中央 (https://repo.maven.apache.org/maven2)] -> [帮助 1] [错误] [错误] 要查看错误的完整堆栈跟踪,请使用 -e 开关重新运行 Maven。 [错误] 使用 -X 开关重新运行 Maven 以启用完整的调试日志记录。 [错误] [错误] 有关错误和可能的解决方案的更多信息,请阅读以下文章: [错误] [帮助 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>
maven google-app-engine gcloud appcfg
4个回答
1
投票

您收到该错误的原因是因为您缺少

gcloud
中的
pom.xml
依赖项,请尝试向其中添加以下内容:

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

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


0
投票

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

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

文档这里这里很有帮助。


0
投票

以下对我有用:

mvn package appengine:deploy


0
投票

使用旧模式的 JAva 运行时无法通过 pom.xml 从纯源进行部署(因此使用 appengine-web.xml 进行配置)

是的,部署此类应用程序的方法是通过添加 appengine-maven-plugin 来使用 mvn appengine:deploy。

Gradle 部署也是如此。

© www.soinside.com 2019 - 2024. All rights reserved.