当前位置: 代码迷 >> 综合 >> Maven 出现No plugin found for prefix ‘help‘ in the current project and in the plugin groups...
  详细解决方案

Maven 出现No plugin found for prefix ‘help‘ in the current project and in the plugin groups...

热度:49   发布时间:2024-01-31 20:59:14.0

Maven 出现No plugin found for prefix 'help' in the current project and in the plugin groups...


cmd控制台输入mvn help:system 出现问题:
No plugin found for prefix ‘help’ in the current project and in the plugin groups…

情况1:
在maven目录下的conf/settings.xml里面的镜像没配置好(如果是使用的阿里镜像地址可以把http换成https试一试)
可以百度百度镜像 添加到setting.xml里面
如图:我的目录结构下的setting.xml的位置
这是我的目录结果
在此处添加镜像镜像添加处

<mirror><id>repo1</id><mirrorOf>maven2</mirrorOf><name>repo1 maven</name><url>http://repo1.maven.org/maven2</url></mirror>

情况2:

环境变量!
环境变量!
环境变量!
(重要的事情说三遍)
在maven环境变量配置好了之后一定!一定看看jdk的环境变量配置好没有
我就是在因为jdk的环境变量没配置导致我被这个问题困扰了三天!!!!!

  相关解决方案