在当前项目中为前缀'appengine'找到的插件错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在当前项目中为前缀'appengine'找到的插件错误相关的知识,希望对你有一定的参考价值。

下面是Hello World gcloud和基于Maven的代码的示例

    <!-- [START pom] -->
.
.
.

<!-- [START properties] -->
  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <!-- REQUIRED by appengine-maven-plugin plugin, if web.xml does not exist for your application -->
    <failOnMissingWebXml>false</failOnMissingWebXml>
<!-- [END_EXCLUDE] -->
.
.
.
  <build>
    <!-- for hot reload of the web application-->
    <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
    <plugins>
      <!-- [START cloudplugin] -->
      <plugin>
        <groupId>com.google.cloud.tools</groupId>
        <artifactId>appengine-maven-plugin</artifactId>
        <version>1.3.2</version>
      </plugin>
      <!-- [END cloudplugin] -->
    </plugins>
  </build>
</project>
<!-- [END pom] -->

并且在运行mvn appengine:run命令时出现以下错误:

“在当前项目和插件组[org.apache.maven.plugins,org.codehaus.mojo]中找不到前缀为'appengine'的插件,可从存储库[本地(/Users/luay/.m2/资料库),中央(https://repo.maven.apache.org/maven2)]

答案

Maven可能会以某种方式不更新本地存储库,您可以运行命令mvn appengine:run -U并试试运气; -U,您的意思是说更新存储库。

以上是关于在当前项目中为前缀'appengine'找到的插件错误的主要内容,如果未能解决你的问题,请参考以下文章

JavaFX Maven 插件:在当前项目和插件组中找不到前缀“jfx”的插件

如何在 appengine 中为追随者流建模?

如何在 IntelliJ IDEA 14 中为当前项目工作配置注释处理?

使用 angular-cli 在 Angular 中为静态文件添加前缀路径

如何修复“在当前项目和插件组中找不到前缀'liquibase'的插件”

sec:authorize 在 thymeleaf 视图中为 isAuthenticated() 和 isAnonymous() 返回 true