在当前项目和存储库中可用的插件组 [] 中找不到前缀“war”的插件 [重复]

Posted

技术标签:

【中文标题】在当前项目和存储库中可用的插件组 [] 中找不到前缀“war”的插件 [重复]【英文标题】:No plugin found for prefix 'war' in the current project and in the plugin groups [] available from the repositories [duplicate] 【发布时间】:2017-03-26 11:37:21 【问题描述】:

我正在尝试 resteasy 网络服务example。

在 pom.xml 文件中出现 No plugin found for prefix 'war' in the current project and in the plugin groups [] available from the repositories 错误。

pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.javacodegeeks.areyes</groupId>
<artifactId>resteasy-sample</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>resteasy-sample Maven Webapp</name>
<url>http://maven.apache.org</url>
<repositories>
   <repository>
      <id>JBoss repository</id>
      <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
   </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>org.jboss.resteasy</groupId>
        <artifactId>resteasy-jaxrs</artifactId>
        <version>2.2.1.GA</version>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.1</version>
        <scope>test</scope>
    </dependency>
</dependencies>
<build>
    <finalName>resteasy-sample</finalName>
</build>

已经在环境变量中添加了 M2_HOME 和路径。 我该如何解决?

【问题讨论】:

您可以在这里查看解决方案:corlang.blogspot.in/2014/09/… 如果你想知道前缀是什么,refer to this。您的特定问题只是由以前的下载尝试失败引起的,因此请使用 -U 标志运行 Maven。 刚刚在 eclipse 中添加了正确的 mvn 路径,它对我有用。 【参考方案1】:

你需要执行maven-war-plugin

【讨论】:

步骤是什么?

以上是关于在当前项目和存储库中可用的插件组 [] 中找不到前缀“war”的插件 [重复]的主要内容,如果未能解决你的问题,请参考以下文章

在当前项目和插件组中找不到前缀“docker”的插件

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

Maven - 在当前项目和插件组中找不到前缀“tomcat7”的插件

Maven-在当前项目和插件组中找不到前缀“spring-boot”的插件

在当前项目和插件组 [org.apache.maven.plugins, org.codehaus.mojo] 中找不到前缀“gcloud”的插件

Gradle在本地Maven存储库中找不到现有的依赖项