【问题标题】:"Plugin not found for prefix app engine" when using maven使用 Maven 时“找不到前缀应用程序引擎的插件”
【发布时间】:2014-10-20 04:17:02
【问题描述】:

我正在尝试运行命令

mvn appengine:devserver

但它会引发以下错误

[ERROR] No plugin found for prefix 'appengine' in the current project and in the plugin groups 
 [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local 
 (/Users/tylerrice/.m2/repository), central (https://repo.maven.apache.org/maven2)] -> [Help 1]

在所有这些代码都来自我们聘请来编写大部分后端的开发公司之前,我从未使用过 maven,所以我完全迷失在这里。我访问了此错误的帮助页面 here 。我浏览了那里的列表,也找不到 pom.xml 文件

【问题讨论】:

标签: java google-app-engine maven


【解决方案1】:

所以我遇到了同样的错误。当我尝试为 appengine 运行 mvn appengine:devserver 时,我遇到了同样的错误

[ERROR] No plugin found for prefix 'appengine' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (/Users/

我意识到我在一个目录上太远了,所以当我输入 ls 并按 Enter 时,我可以看到我的应用程序。我只需要键入 cd [应用程序名称] 即可将目录级别降低到应用程序本身,它运行良好。

【讨论】:

    【解决方案2】:

    在您的构建生命周期中,您没有定义此插件,您可以通过以下方式验证它

    mvn help:effective-pom 
    

    并观察<build>

    你需要让 maven 知道这个插件是什么,为此你需要将它添加到 <build> 喜欢

    <build>
        <plugins>
            <plugin>
                <groupId>com.google.appengine</groupId>
                <artifactId>appengine-maven-plugin</artifactId>
                <version>1.9.9</version>
            </plugin>
        </plugins>
    </build>
    

    More

    【讨论】:

      【解决方案3】:

      我遇到了同样的问题,没有任何帮助,我通过从 appengine 主页运行应用服务器以及我的应用的位置来解决它:

      C:\Downloads\appengine-java-sdk-1.9.24\appengine-java-sdk-1.9.24\bin>dev_appserver.cmd C:\projects\google_app_engine\guestbook_tutorial\guestbook\target\guestbook-1.0-快照\

      【讨论】:

        【解决方案4】:

        在您的 POM 文件中,需要明确指定 appengine VERSION。 (不知道为什么)。

        " com.google.appengine appengine-maven-插件 1.9.15 "

        【讨论】:

          猜你喜欢
          • 2019-11-25
          • 1970-01-01
          • 2015-01-22
          • 2011-09-13
          • 1970-01-01
          • 2016-11-25
          • 2014-01-31
          • 2019-12-06
          • 2014-08-10
          相关资源
          最近更新 更多